diff --git a/search/conditions.go b/search/conditions.go index d4d98fed..970171a1 100644 --- a/search/conditions.go +++ b/search/conditions.go @@ -75,7 +75,7 @@ func parseSearch(value string) *searchOptions { value = typeRegexp.ReplaceAllString(value, "") } - // If it's canse insensitive, put everything in lowercase. + // If it's case insensitive, put everything in lowercase. if !opts.CaseSensitive { value = strings.ToLower(value) }