cargo fmt

This commit is contained in:
Michael Davis 2024-05-07 11:35:49 -04:00
parent 9dd51e75e0
commit 5c11af1479
5 changed files with 15 additions and 12 deletions

View file

@ -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, ..