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());