Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-vcs/src/git.rs')
-rw-r--r--helix-vcs/src/git.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-vcs/src/git.rs b/helix-vcs/src/git.rs
index 979f8726..78e58243 100644
--- a/helix-vcs/src/git.rs
+++ b/helix-vcs/src/git.rs
@@ -145,8 +145,8 @@ fn status(repo: &Repository, f: impl Fn(Result<FileChange>) -> bool) -> Result<(
for item in status_iter {
let Ok(item) = item.map_err(|err| f(Err(err.into()))) else {
- continue;
- };
+ continue;
+ };
let change = match item {
Item::Modification {
rela_path, status, ..