:%s/insensativiseMap/insensitiviseMap/g

This commit is contained in:
Anthony Fok 2015-01-22 00:43:42 -07:00
parent 8b99f53550
commit 5b0b926e3d
2 changed files with 8 additions and 8 deletions

View file

@ -25,7 +25,7 @@ import (
"gopkg.in/yaml.v2"
)
func insensativiseMap(m map[string]interface{}) {
func insensitiviseMap(m map[string]interface{}) {
for key, val := range m {
lower := strings.ToLower(key)
if key != lower {
@ -137,5 +137,5 @@ func marshallConfigReader(in io.Reader, c map[string]interface{}, configType str
}
}
insensativiseMap(c)
insensitiviseMap(c)
}

View file

@ -361,7 +361,7 @@ func (v *viper) Marshal(rawVal interface{}) error {
return err
}
v.insensativiseMaps()
v.insensitiviseMaps()
return nil
}
@ -612,11 +612,11 @@ func (v *viper) marshalReader(in io.Reader, c map[string]interface{}) {
marshallConfigReader(in, c, v.getConfigType())
}
func (v *viper) insensativiseMaps() {
insensativiseMap(v.config)
insensativiseMap(v.defaults)
insensativiseMap(v.override)
insensativiseMap(v.kvstore)
func (v *viper) insensitiviseMaps() {
insensitiviseMap(v.config)
insensitiviseMap(v.defaults)
insensitiviseMap(v.override)
insensitiviseMap(v.kvstore)
}
// retrieve the first found remote configuration