We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2a865 commit 02a7fbeCopy full SHA for 02a7fbe
src/lib.rs
@@ -790,8 +790,8 @@ impl Pattern {
790
false
791
}
792
AnyChar => true,
793
- AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
794
- 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),
795
Char(c2) => chars_eq(c, c2, options.case_sensitive),
796
AnySequence | AnyRecursiveSequence => unreachable!(),
797
} {
0 commit comments