mirror of https://github.com/spf13/viper.git
Fixed typo
This commit is contained in:
parent
77144270da
commit
6c340f2886
2
viper.go
2
viper.go
|
@ -302,7 +302,7 @@ func find(key string) interface{} {
|
|||
if exists {
|
||||
jww.TRACE.Println(key, "registered as env var", envkey)
|
||||
if val = os.Getenv(envkey); val != "" {
|
||||
jww.TRACE.Println(envkey, "found in environement with val:", val)
|
||||
jww.TRACE.Println(envkey, "found in environment with val:", val)
|
||||
return val
|
||||
} else {
|
||||
jww.TRACE.Println(envkey, "env value unset:")
|
||||
|
|
Loading…
Reference in New Issue