Skip to content

Commit

Permalink
Fix typo in 'lower' doc comment. #148
Browse files Browse the repository at this point in the history
  • Loading branch information
epost committed Aug 15, 2019
1 parent 667a1bb commit 89bf5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Language/CQL/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ intercalate sep xs = snd (foldl go (True, mempty) xs)
mapl :: Foldable f => (a -> b) -> f a -> [b]
mapl fn = fmap fn . Foldable.toList

-- | Converts a String to lowercase, like DataList.Extra.lower.
-- | Converts a String to lowercase, like Data.List.Extra.lower.
lower :: String -> String
lower = fmap toLower

Expand Down

0 comments on commit 89bf5db

Please sign in to comment.