From 7730afe7089350dc7a331a1c50d2db056f27bc17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emre=20Tekelio=C4=9Flu?= Date: Fri, 20 Oct 2017 09:41:08 +0300 Subject: [PATCH] Fix typo in tags.go --- tags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags.go b/tags.go index 8859341..136a31e 100644 --- a/tags.go +++ b/tags.go @@ -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 {