diff --git a/src/modules/powerrename/README.md b/src/modules/powerrename/README.md index 56c4c08f95..48235e13b6 100644 --- a/src/modules/powerrename/README.md +++ b/src/modules/powerrename/README.md @@ -65,7 +65,7 @@ Simple matching examples: | .* | Match all the text in the name | | ^foo | Match text that begins with "foo" | | bar$ | Match text that ends with "bar" | -| ^foo bar$ | Match text that begins with "foo" and ends with "bar" | +| ^foo.\*bar$ | Match text that begins with "foo" and ends with "bar" | | .+?(?=bar) | Match everything up to "bar" | | foo[\s\S]\*bar | Match everything between "foo" and "bar" |