Fix typo in tags.go

This commit is contained in:
Emre Tekelioğlu 2017-10-20 09:41:08 +03:00 committed by GitHub
parent 7e5a8eef61
commit 7730afe708

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 {