We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9503c7a + d186205 commit c9244b5Copy full SHA for c9244b5
pkg/match/match.go
@@ -15,7 +15,7 @@ const (
15
16
func (m Match) Equal(s, t string) bool {
17
if m == CASE_INSENSITIVE {
18
- strings.EqualFold(s, t)
+ return strings.EqualFold(s, t)
19
}
20
return s == t
21
0 commit comments