Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02a7fbe

Browse files
committedDec 22, 2023
Remove useless references
1 parent de2a865 commit 02a7fbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ impl Pattern {
790790
false
791791
}
792792
AnyChar => true,
793-
AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
794-
AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options),
793+
AnyWithin(ref specifiers) => in_char_specifiers(specifiers, c, options),
794+
AnyExcept(ref specifiers) => !in_char_specifiers(specifiers, c, options),
795795
Char(c2) => chars_eq(c, c2, options.case_sensitive),
796796
AnySequence | AnyRecursiveSequence => unreachable!(),
797797
} {

0 commit comments

Comments
 (0)
Please sign in to comment.