summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mode.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mode.rs b/src/mode.rs
index 586fd7d..603dbdf 100644
--- a/src/mode.rs
+++ b/src/mode.rs
@@ -44,11 +44,12 @@ impl NeedConfirmation {
NeedConfirmation::Copy => {
format!("Files will be copied to {}", destination)
}
- NeedConfirmation::Delete => "Files will deleted permanently".to_owned(),
+ NeedConfirmation::Delete | NeedConfirmation::EmptyTrash => {
+ "Files will be deleted permanently".to_owned()
+ }
NeedConfirmation::Move => {
format!("Files will be moved to {}", destination)
}
- NeedConfirmation::EmptyTrash => "Trash will be emptied".to_owned(),
}
}
}