hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit f8d8c85428f527139c20369910230741dcaf2969
parent 10dc87bf866f7a4f99c248436c38edf0ecdd157f
Author: Cameron Moore <moorereason@gmail.com>
Date:   Thu,  6 Sep 2018 15:28:13 -0500

langs: Fix golint godoc issue

Diffstat:
Mlangs/language.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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))
 }