langs: Fix golint godoc issue

This commit is contained in:
Cameron Moore 2018-09-06 15:28:13 -05:00 committed by Bjørn Erik Pedersen
parent 10dc87bf86
commit f8d8c85428

View file

@ -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))
}