From 06cf89abd05b7e8ca34a1c1bee160f80e1279feb Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Mon, 7 Mar 2016 02:07:42 -0600 Subject: [PATCH] Typo --- viper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viper.go b/viper.go index 7a49a0a..70f8d03 100644 --- a/viper.go +++ b/viper.go @@ -540,7 +540,7 @@ func (v *Viper) GetString(key string) string { return cast.ToString(v.Get(key)) } -// Returns the value associated with the key asa boolean +// Returns the value associated with the key as a boolean func GetBool(key string) bool { return v.GetBool(key) } func (v *Viper) GetBool(key string) bool { return cast.ToBool(v.Get(key))