Skip to content

Commit

Permalink
Fix delete infomation text
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoheiu committed Jan 11, 2025
1 parent 52502b7 commit 36c9ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ impl State {
let duration = duration_to_string(start.elapsed());
let delete_message: String = {
if total == 1 {
format!("1 item deleted [{}]", duration)
format!("1 item deleted. [{}]", duration)
} else {
let mut count = total.to_string();
let _ = write!(count, " items deleted [{}]", duration);
Expand Down

0 comments on commit 36c9ac4

Please sign in to comment.