Archived
1
0
Fork 0

style: fix typo in filter_include.go

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2021-05-20 17:11:12 +02:00
parent 48a763a90c
commit 27d9f4976e
No known key found for this signature in database
GPG key ID: FF42D23B580C89F7

View file

@ -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 {