diff --git a/src/main.rs b/src/main.rs index 6af4bf4..f88fb77 100644 --- a/src/main.rs +++ b/src/main.rs @@ -189,7 +189,7 @@ fn main() { .conflicts_with("filter") .conflicts_with("types") .conflicts_with("depth") - .help("Exclude files matching this regex. To ignore png files type: -v \"\\.png$\" "), + .help("Exclude filepaths matching this regex. To ignore png files type: -v \"\\.png$\" "), ) .arg( Arg::new("filter") @@ -200,7 +200,7 @@ fn main() { .multiple_occurrences(true) .conflicts_with("types") .conflicts_with("depth") - .help("Only include files matching this regex. For png files type: -e \"\\.png$\" "), + .help("Only include filepaths matching this regex. For png files type: -e \"\\.png$\" "), ) .arg( Arg::new("types")