We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb4da62 commit 325b175Copy full SHA for 325b175
src/lib.rs
@@ -841,8 +841,8 @@ impl Pattern {
841
false
842
}
843
AnyChar => true,
844
- AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
845
- AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options),
+ AnyWithin(ref specifiers) => in_char_specifiers(specifiers, c, options),
+ AnyExcept(ref specifiers) => !in_char_specifiers(specifiers, c, options),
846
Char(c2) => chars_eq(c, c2, options.case_sensitive),
847
AnySequence | AnyRecursiveSequence => unreachable!(),
848
} {
0 commit comments