From: Cameron Moore Date: Thu, 6 Sep 2018 20:28:13 +0000 (-0500) Subject: langs: Fix golint godoc issue X-Git-Tag: v0.49~47 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f8d8c85428f527139c20369910230741dcaf2969;p=brevno-suite%2Fhugo langs: Fix golint godoc issue --- diff --git a/langs/language.go b/langs/language.go index 7d77df4e..d741b997 100644 --- a/langs/language.go +++ b/langs/language.go @@ -162,7 +162,7 @@ func (l *Language) GetStringMapString(key string) map[string]string { return cast.ToStringMapString(l.Get(key)) } -// returns the value associated with the key as a slice of strings. +// GetStringSlice returns the value associated with the key as a slice of strings. func (l *Language) GetStringSlice(key string) []string { return cast.ToStringSlice(l.Get(key)) }