From 6fee8a44429339ba59004fc7506571b8876eae4a Mon Sep 17 00:00:00 2001 From: Sladyn Date: Sun, 3 Mar 2019 10:38:33 +0530 Subject: Commit to chane the description of function --- cache/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache/filter.go') diff --git a/cache/filter.go b/cache/filter.go index a5aca8fb..fe6d200a 100644 --- a/cache/filter.go +++ b/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) -- cgit