Merge pull request #6 from Aaron1011/typo

Fix typo
This commit is contained in:
Juan Batiz-Benet 2014-07-22 14:58:36 -07:00
commit 1fb29a293d

View File

@ -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))
}