diff --git a/config/config.go b/config/config.go index 664eeeee509..953298c5868 100644 --- a/config/config.go +++ b/config/config.go @@ -44,7 +44,7 @@ func LoadConfig(filename string) (*Config, error) { return nil, err } - // if nothing is there, write first conifg file. + // if nothing is there, write first config file. if _, err := os.Stat(filename); os.IsNotExist(err) { WriteFile(filename, []byte(defaultConfigFile)) }