summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Wiemuth <felixwiemuth@hotmail.de>2020-06-23 08:29:04 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-07-29 15:06:35 -0400
commitb9a880fce484d0a87bb794b9d2d8a73e54819011 (patch)
treeb5a9b6d8ef6ad56660523fc765ae96243dd6e06c
parent39c89862161bf488a6aca9372cbb67690f436ce7 (diff)
downloadhaskell-b9a880fce484d0a87bb794b9d2d8a73e54819011.tar.gz
Fix typo
-rw-r--r--libraries/base/Data/Maybe.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Maybe.hs b/libraries/base/Data/Maybe.hs
index f646faeb9a..d54ebf1ae4 100644
--- a/libraries/base/Data/Maybe.hs
+++ b/libraries/base/Data/Maybe.hs
@@ -149,7 +149,7 @@ fromJust Nothing = error "Maybe.fromJust: Nothing" -- yuck
fromJust (Just x) = x
-- | The 'fromMaybe' function takes a default value and a 'Maybe'
--- value. If the 'Maybe' is 'Nothing', it returns the default values;
+-- value. If the 'Maybe' is 'Nothing', it returns the default value;
-- otherwise, it returns the value contained in the 'Maybe'.
--
-- ==== __Examples__