From 1f5bca0dfdd7a3ace04d8d581f3b26a710242076 Mon Sep 17 00:00:00 2001 From: jackspirou Date: Mon, 3 Aug 2015 11:42:26 -0500 Subject: [PATCH] running tests again --- viper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viper.go b/viper.go index 2bc8db5..c9e9f09 100644 --- a/viper.go +++ b/viper.go @@ -455,7 +455,7 @@ func (v *Viper) GetStringMapString(key string) map[string]string { return cast.ToStringMapString(v.Get(key)) } -// Returns the value associated with the key as a map to a slice of strings +// Returns the value associated with the key as a map to a slice of strings. func GetStringMapStringSlice(key string) map[string][]string { return v.GetStringMapStringSlice(key) } func (v *Viper) GetStringMapStringSlice(key string) map[string][]string { return cast.ToStringMapStringSlice(v.Get(key))