From ea48cda85dfebc9ccaca83af16a5051415b0a389 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 25 Nov 2024 20:42:11 -0700 Subject: [PATCH] clean up a bit --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.rs b/src/command.rs index e924737..9a9c94e 100644 --- a/src/command.rs +++ b/src/command.rs @@ -83,7 +83,7 @@ impl Command { }); if iter.len() > max_display { - println!("\tOmitting {} other entries.", iter.len() - max_display); + println!("\t+ Omitting {} other entries...", iter.len() - max_display); } return None;