Skip to content

Commit

Permalink
match: fix equal
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Dec 26, 2024
1 parent 9503c7a commit d186205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/match/match.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const (

func (m Match) Equal(s, t string) bool {
if m == CASE_INSENSITIVE {
strings.EqualFold(s, t)
return strings.EqualFold(s, t)
}
return s == t

Expand Down

0 comments on commit d186205

Please sign in to comment.