From 3c0ff861e3d9906ecc4ebfb7e41557d44d3e277b 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 47d027f..5e01aa5 100644 --- a/viper.go +++ b/viper.go @@ -465,7 +465,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))