From 9f5271c6132412144af35e7e3db87deaad14d520 Mon Sep 17 00:00:00 2001 From: Alexey Zinchenko Date: Sun, 31 Jan 2021 02:18:17 +0300 Subject: [PATCH] Fixed typo. --- src/shred/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shred/mod.rs b/src/shred/mod.rs index 83c3556..9b83de3 100644 --- a/src/shred/mod.rs +++ b/src/shred/mod.rs @@ -111,7 +111,7 @@ impl Shredder { } fn user_prompt(path: &str) -> bool { - print!("Do you really want to shred '{}'? [Y/n] ", absolute_path); + print!("Do you really want to shred '{}'? [Y/n] ", path); io::stdout().flush().unwrap(); let mut input = String::new();