From 59ab19e3b600b0daa43da3f73efef49e3d7edf89 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 22 Jul 2014 17:19:33 -0400 Subject: [PATCH] Fix typo --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) }