fix environment capitalize function
This commit is contained in:
parent
30dac8fbb6
commit
b86f809a10
@ -70,7 +70,7 @@ parseArgConfig = do
|
|||||||
getPort front (arg:rest) = getPort (front . (arg:)) rest
|
getPort front (arg:rest) = getPort (front . (arg:)) rest
|
||||||
|
|
||||||
capitalize [] = []
|
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
|
-- | Load the app config from command line parameters, using the given
|
||||||
-- @ConfigSettings.
|
-- @ConfigSettings.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user