mirror of
https://github.com/spf13/viper
synced 2024-12-23 03:57:01 +00:00
Fixed function name typo
This commit is contained in:
parent
0776ded240
commit
9853229d98
1 changed files with 1 additions and 1 deletions
2
viper.go
2
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)
|
||||
|
|
Loading…
Reference in a new issue