summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph C. Sible <3439-josephcsible@users.noreply.gitlab.haskell.org>2020-04-26 14:21:49 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-05-08 15:29:40 -0400
commitcdd229fff24ab19a41dd2af218108dd8c514fff7 (patch)
treed5901c0634ae7d1e2be1bb0d90a69fd3ae7ae28a
parentbb35c0e573b0bc8fe6a28c00734fa124da02a755 (diff)
downloadhaskell-cdd229fff24ab19a41dd2af218108dd8c514fff7.tar.gz
Apply suggestion to libraries/base/Data/Monoid.hs
-rw-r--r--libraries/base/Data/Monoid.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Monoid.hs b/libraries/base/Data/Monoid.hs
index 413072262b..7c299019d9 100644
--- a/libraries/base/Data/Monoid.hs
+++ b/libraries/base/Data/Monoid.hs
@@ -233,7 +233,7 @@ instance (Applicative f, Bounded a) => Bounded (Ap f a) where
minBound = pure minBound
maxBound = pure maxBound
--- Note that even if the underlying 'Num' and 'Applicative' instances are
+-- | Note that even if the underlying 'Num' and 'Applicative' instances are
-- lawful, for most 'Applicative's, this instance will not be lawful. It's
-- particularly tempting to use this with lists, but then these laws all fail
-- to hold: