about summary refs log tree commit diff
path: root/src/actions/update.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/update.rs')
-rw-r--r--src/actions/update.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/update.rs b/src/actions/update.rs
index 05379c1..081be72 100644
--- a/src/actions/update.rs
+++ b/src/actions/update.rs
@@ -97,13 +97,13 @@ fn get_new_history_for_file<FS: Fs>(
 
             let changes = ContentChange::diff(&old_content, &new_content);
 
-            if !changes.is_empty() {                
+            if !changes.is_empty() {
                 let mut new_history = file_history;
                 new_history.add_change(FileChange {
                     change_index: cursor + 1,
                     variant: FileChangeVariant::Updated(changes),
                 });
-                
+
                 Ok(Some((history_file, new_history)))
             } else {
                 Ok(None)