Whoops, overrode the original SetDefault ! didn't chekc much heh!

This commit is contained in:
Alexandre Bourget 2016-01-09 00:46:41 -05:00
parent 7b7d1442ac
commit 70685607d8

View file

@ -174,15 +174,15 @@ func New() *Viper {
return v return v
} }
// Default retrieves the default Viper instance. To be loaded later // DefaultConfig retrieves the default Viper instance. To be loaded
// with SetDefault. // later with SetDefaultConfig.
func Default() *Viper { func DefaultConfig() *Viper {
return v return v
} }
// SetDefault applies this Viper instance as the default. Used when // SetDefaultConfig applies this Viper instance as the default. Used
// calling the functions defined in the viper package. // when calling the functions defined in the viper package.
func SetDefault(conf *Viper) { func SetDefaultConfig(conf *Viper) {
v = conf v = conf
} }