aboutsummaryrefslogtreecommitdiff
path: root/src/vcs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/vcs.rs')
-rw-r--r--src/vcs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcs.rs b/src/vcs.rs
index aee4144..9673bc9 100644
--- a/src/vcs.rs
+++ b/src/vcs.rs
@@ -74,7 +74,7 @@ pub fn vcs_status() -> Option<(colored::ColoredString, colored::ColoredString)>
74 repo_stat = stat_char.color(&git_index_modified_color[..]); 74 repo_stat = stat_char.color(&git_index_modified_color[..]);
75 }, 75 },
76 // STATE: committed (changes have been saved in the repo) 76 // STATE: committed (changes have been saved in the repo)
77 _ => { } 77 _ => {}
78 } 78 }
79 } 79 }
80 return Some((branch, repo_stat)) 80 return Some((branch, repo_stat))