aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcs/git.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/vcs/git.rs')
-rw-r--r--src/vcs/git.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vcs/git.rs b/src/vcs/git.rs
index 26a64a9..ddbdfcc 100644
--- a/src/vcs/git.rs
+++ b/src/vcs/git.rs
@@ -138,13 +138,13 @@ impl GitInfo {
#[cfg(feature="verbose")] let _ = talk_about_time(now, "remote branch diff");
GitInfo {
- modified_files: modified_files,
- staged_files: staged_files,
- new_files: new_files,
- commits: commits,
- active_operation: active_operation,
- branch: branch,
- remote_branch_diff: remote_branch_diff,
+ modified_files,
+ staged_files,
+ new_files,
+ commits,
+ active_operation,
+ branch,
+ remote_branch_diff,
}
}
}