From 27d9f4976e6f38c42af3cfc63746b23bf8a7edb8 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Thu, 20 May 2021 17:11:12 +0200 Subject: [PATCH] style: fix typo in filter_include.go Signed-off-by: Julien Riou --- filter_include.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {