diff --git a/config/config.go b/config/config.go
index 664eeeee50986e6b04ca3159037b5f12f6ce3d73..953298c58683bea60363cfb2d3d299ba2f74a8d4 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))
 	}