Remove uneeded part in example.

This commit is contained in:
Pedro de Oliveira 2023-05-07 20:40:39 +01:00
parent 0b6ff372cd
commit e01fccd3c7
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ Here are the available options:
-w, --wildcard <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

View File

@ -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,
}