From 8d99b98dfa0c41cd27acc9af97d229b28d0eaacc Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Tue, 2 Apr 2024 16:45:05 +0100 Subject: [PATCH] feat: nicer formatting of confirm_each() --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f54a189..48e7a6d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,7 @@ fn confirm_once() { } fn confirm_each(target: &String) { - print!("Are you sure you want to delete {}? [y/N]: ", target); + print!("Are you sure you want to delete {} ? [y/N]: ", target.bold()); confirm_parse(); }