From 09f728e71aad100aa541bcc48a3b2dc73438bc73 Mon Sep 17 00:00:00 2001 From: biluohc Date: Sat, 28 Oct 2017 23:48:02 +0800 Subject: [PATCH] fix output format style for examples/extract.rs --- examples/extract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/extract.rs b/examples/extract.rs index ffee4837..6fa80e27 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -30,7 +30,7 @@ fn real_main() -> i32 { } if (&*file.name()).ends_with('/') { - println!("Dir {} extracted to \"{}\"", i, outpath.as_path().display()); + println!("File {} extracted to \"{}\"", i, outpath.as_path().display()); fs::create_dir_all(&outpath).unwrap(); } else { println!("File {} extracted to \"{}\" ({} bytes)", i, outpath.as_path().display(), file.size());