diff options
-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: |