diff --git a/filter_include.go b/filter_include.go index 520d6e3..fe14fe0 100644 --- a/filter_include.go +++ b/filter_include.go @@ -27,7 +27,7 @@ func NewIncludeFilter(regex string) (*IncludeFilter, error) { return &IncludeFilter{regex: compiledRegex}, nil } -// Include returns treue when the product name matches the regex +// Include returns true when the product name matches the regex // implements the Filter interface func (f *IncludeFilter) Include(product *Product) bool { if f.regex == nil {