diff --git a/README.md b/README.md index 3dc78ba..b0ba490 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ ## Usage -pngrip [DESTINATION] [PATH]... +pngrip [DESTINATION] [FILES]... where DESTINATION is the path to the existing or non-existing directory where ripped images will be delivered and -PATH... are paths to the files to rip images from +FILES... are paths to the files to rip images from ## Examples diff --git a/src/main.rs b/src/main.rs index 9d74d68..4daef91 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ use std::path::Path; fn main() { let args: Vec = std::env::args().collect(); if args.len() < 3 { - println!("USAGE: pngrip [DESTINATION] [PATH]..."); + println!("USAGE: pngrip [DESTINATION] [FILES]..."); std::process::exit(0); }