From fae8fb8ae2e685ef9c41bbaae08a4197d5e1832b Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Thu, 5 May 2016 16:59:11 -0500 Subject: [PATCH] Adds missing comment --- glob.go | 1 + 1 file changed, 1 insertion(+) diff --git a/glob.go b/glob.go index d1052ab..289238f 100644 --- a/glob.go +++ b/glob.go @@ -5,6 +5,7 @@ type Glob interface { Match(string) bool } +// Globs represents a collection of Globs type Globs []Glob // Compile creates Glob for given pattern and strings (if any present after pattern) as separators.