diff --git a/yesod/Yesod/Default/Config.hs b/yesod/Yesod/Default/Config.hs index a1619053..b256cc2a 100644 --- a/yesod/Yesod/Default/Config.hs +++ b/yesod/Yesod/Default/Config.hs @@ -70,7 +70,7 @@ parseArgConfig = do getPort front (arg:rest) = getPort (front . (arg:)) rest capitalize [] = [] - capitalize (x:xs) = toUpper x : map toLower xs + capitalize (x:xs) = toUpper x : xs -- | Load the app config from command line parameters, using the given -- @ConfigSettings.