We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b52009 commit 36fdb85Copy full SHA for 36fdb85
src/lib.rs
@@ -837,8 +837,8 @@ impl Pattern {
837
false
838
}
839
AnyChar => true,
840
- AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
841
- 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),
842
Char(c2) => chars_eq(c, c2, options.case_sensitive),
843
AnySequence | AnyRecursiveSequence => unreachable!(),
844
} {
0 commit comments