From f102f19c33b79faceb744df7681ab8c23c0d75dd Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Date: Sun, 7 May 2023 23:44:48 +0100 Subject: [PATCH] Fix typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d877977..58ff0bb 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ You can use matching groups in the pattern to capture parts of the filename that The `--replacement` argument specifies the replacement pattern for the matched filenames. This argument is required. -You can use reference groups in the pattern by using `\1`, `\2`, etc. to refer to the captured groups in the `--pattern` argument. For example, if you have a pattern `"S(\d+)E(\d+)"` that matches `"S01E11"` and you want to replace it with `"Season 01 Episode 02"`, you can use the following replacement pattern: `"Season \1 Episode \2"`. +You can use reference groups in the pattern by using `\1`, `\2`, etc. to refer to the captured groups in the `--pattern` argument. For example, if you have a pattern `"S(\d+)E(\d+)"` that matches `"S01E11"` and you want to replace it with `"Season 01 Episode 11"`, you can use the following replacement pattern: `"Season \1 Episode \2"`. You can also use the following special tags in the replacement pattern: