From 9853229d98aa405786860f5ed135381509995d64 Mon Sep 17 00:00:00 2001 From: Vlad Didenko Date: Sat, 23 May 2015 18:29:26 -0500 Subject: [PATCH] Fixed function name typo --- viper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viper.go b/viper.go index 2d38562..75b59b6 100644 --- a/viper.go +++ b/viper.go @@ -981,7 +981,7 @@ func (v *Viper) findConfigInPaths() (string, error) { } // Search the current working directory for any config file. -func (v *Viper) findConfigInCWD() (string, error) { +func (v *Viper) findConfigInWD() (string, error) { wd, _ := os.Getwd() jww.INFO.Println("Searching for config in ", wd)