Commit to chane the description of function

Sladyn created

Change summary

cache/filter.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

cache/filter.go 🔗

@@ -55,7 +55,7 @@ func LabelFilter(label string) Filter {
 	}
 }
 
-// TitleFilter return a Filter that match a title
+// TitleFilter return a Filter that match if the title contains the given pattern
 func TitleFilter(title string) Filter {
 	return func(repo *RepoCache, excerpt *BugExcerpt) bool {
 		return strings.Contains(excerpt.Title, title)