forked from mirror/viper
Fix typo
This commit is contained in:
parent
b8221cf4ee
commit
7fdad0204e
2
viper.go
2
viper.go
|
@ -797,7 +797,7 @@ func (v *Viper) GetDuration(key string) time.Duration {
|
|||
return cast.ToDuration(v.Get(key))
|
||||
}
|
||||
|
||||
// GetIntSlice returns the value associated with the key as a slice of strings.
|
||||
// GetIntSlice returns the value associated with the key as a slice of int values.
|
||||
func GetIntSlice(key string) []int { return v.GetIntSlice(key) }
|
||||
func (v *Viper) GetIntSlice(key string) []int {
|
||||
return cast.ToIntSlice(v.Get(key))
|
||||
|
|
Loading…
Reference in New Issue