Uppercase in the example.

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

View File

@ -41,7 +41,7 @@ Here are the available options:
-s, --pattern <PATTERN>
Regular expression pattern to match against the filenames in the directory.
The pattern should contain match groups (expressed in parentheses). Example: "s(\d+)e(\d+).*\.(...)"
The pattern should contain match groups (expressed in parentheses). Example: "S(\d+)E(\d+).*\.(...)"
-r, --replacement <REPLACEMENT>
Replacement pattern for the matched filenames.

View File

@ -13,7 +13,7 @@ struct Args {
/// Regular expression pattern to match against the filenames in the directory.
///
/// The pattern should contain match groups (expressed in parentheses).
/// Example: "s(\d+)e(\d+).*\.(...)"
/// Example: "S(\d+)E(\d+).*\.(...)"
#[arg(short = 's', long)]
pattern: String,