Merge pull request #97 from emret/patch-1

Fix typo in tags.go
This commit is contained in:
Fatih Arslan 2017-10-20 09:48:19 +03:00 committed by GitHub
commit f5faa72e73

View File

@ -5,7 +5,7 @@ import "strings"
// tagOptions contains a slice of tag options
type tagOptions []string
// Has returns true if the given optiton is available in tagOptions
// Has returns true if the given option is available in tagOptions
func (t tagOptions) Has(opt string) bool {
for _, tagOpt := range t {
if tagOpt == opt {