diff options
author | Ben Sima <ben@bsima.me> | 2020-12-06 12:18:16 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-12-06 12:22:33 -0500 |
commit | 9a3eaceb2982f4342bc2b944d3919276c7670221 (patch) | |
tree | 0e8dfea4fb740acac595df8af35d637ec6c9a49a /Alpha.hs | |
parent | dee8c3aafb41d984bc69274ed320272ee7ee2bbf (diff) |
Add missing type signature
Diffstat (limited to 'Alpha.hs')
-rw-r--r-- | Alpha.hs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -120,6 +120,7 @@ capitalize :: String -> String capitalize [] = [] capitalize str = (Char.toUpper <| List.head str) : (Char.toLower </ List.tail str) +lowercase :: String -> String lowercase str = [Char.toLower c | c <- str] require :: Text -> Maybe a -> a |