diff --git a/README.md b/README.md index fc8cb3a..ccf5fd1 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Here are the available options: -s, --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 pattern for the matched filenames. diff --git a/src/main.rs b/src/main.rs index 931e92d..9d98fe5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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,