This commit is contained in:
gobwas 2016-02-23 14:46:32 +03:00
parent 92be27c14d
commit 8de721a7a4
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
package glob
// TODO use constructor with all matchers, and to their structs private
import (
"fmt"
"github.com/gobwas/glob/match"
@ -122,7 +124,7 @@ func glueAsRow(matchers []match.Matcher) match.Matcher {
}
}
return match.Row{c, l}
return match.NewRow(c, l)
}
func glueAsEvery(matchers []match.Matcher) match.Matcher {