1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-20 22:51:50 +00:00

Merge pull request #1326 from hvnsweeting/patch-1

fix typo
This commit is contained in:
astaxie 2015-08-27 22:49:38 +08:00
commit cfaae5ab8c

View File

@ -88,12 +88,12 @@ func Register(name string, adapter Config) {
// adapterName is ini/json/xml/yaml.
// filename is the config file path.
func NewConfig(adapterName, fileaname string) (ConfigContainer, error) {
func NewConfig(adapterName, filename string) (ConfigContainer, error) {
adapter, ok := adapters[adapterName]
if !ok {
return nil, fmt.Errorf("config: unknown adaptername %q (forgotten import?)", adapterName)
}
return adapter.Parse(fileaname)
return adapter.Parse(filename)
}
// adapterName is ini/json/xml/yaml.