diff options
author | Joseph C. Sible <3439-josephcsible@users.noreply.gitlab.haskell.org> | 2020-04-26 14:21:49 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-08 15:29:40 -0400 |
commit | cdd229fff24ab19a41dd2af218108dd8c514fff7 (patch) | |
tree | d5901c0634ae7d1e2be1bb0d90a69fd3ae7ae28a /libraries/base | |
parent | bb35c0e573b0bc8fe6a28c00734fa124da02a755 (diff) | |
download | haskell-cdd229fff24ab19a41dd2af218108dd8c514fff7.tar.gz |
Apply suggestion to libraries/base/Data/Monoid.hs
Diffstat (limited to 'libraries/base')
-rw-r--r-- | libraries/base/Data/Monoid.hs | 2 |
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: |