Small fixes

This commit is contained in:
Zachary Yedidia
2019-06-15 22:23:19 -04:00
parent 0f4f60c018
commit 7cd5024e34
3 changed files with 7 additions and 5 deletions

View File

@@ -197,7 +197,7 @@ func DefaultGlobalSettings() map[string]interface{} {
// Note that filetype is a local only option
func DefaultLocalSettings() map[string]interface{} {
common := DefaultCommonSettings()
common["filetype"] = "Unknown"
common["filetype"] = "unknown"
return common
}