diff --git a/README.md b/README.md index ccf5fd1..e328b96 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Here are the available options: -w, --wildcard Filename wildcard to filter the files to be renamed in the directory. - Use `*` to match any filename. For example, "*.mkv" will match all files with the ".mkv" extension. + For example, "*.mkv" will match all files with the ".mkv" extension. [default: *] -h, --help diff --git a/src/main.rs b/src/main.rs index 9d98fe5..10ef3f8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,7 @@ struct Args { /// Filename wildcard to filter the files to be renamed in the directory. /// - /// Use `*` to match any filename. For example, "*.mkv" will match all files with the ".mkv" extension. + /// For example, "*.mkv" will match all files with the ".mkv" extension. #[arg(short = 'w', long, default_value = "*")] wildcard: String, }