Minor fixes

This commit is contained in:
loyalsoldier
2020-09-01 08:46:55 +08:00
parent 8323564e9a
commit 323ef03f02
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ func (t Type) New(pattern string) (Matcher, error) {
// IndexMatcher is the interface for matching with a group of matchers.
type IndexMatcher interface {
// Match returns the the index of a matcher that matches the input. It returns empty array if no such matcher exists.
// Match returns the index of a matcher that matches the input. It returns empty array if no such matcher exists.
Match(input string) []uint32
}