summaryrefslogtreecommitdiff
path: root/libraries/base/Control/Applicative.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/Control/Applicative.hs')
-rw-r--r--libraries/base/Control/Applicative.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/libraries/base/Control/Applicative.hs b/libraries/base/Control/Applicative.hs
index 6c05eec843..93022cb29c 100644
--- a/libraries/base/Control/Applicative.hs
+++ b/libraries/base/Control/Applicative.hs
@@ -63,6 +63,9 @@ import GHC.List (repeat, zipWith, drop)
import GHC.Read (Read)
import GHC.Show (Show)
+-- $setup
+-- >>> import Prelude
+
newtype WrappedMonad m a = WrapMonad { unwrapMonad :: m a }
deriving ( Generic -- ^ @since 4.7.0.0
, Generic1 -- ^ @since 4.7.0.0
@@ -146,7 +149,9 @@ instance Alternative ZipList where
--
-- ==== __Examples__
--
--- Using the 'Alternative' instance of `Control.Monad.Except`, the following functions:
+-- Using the 'Alternative' instance of "Control.Monad.Except", the following functions:
+--
+-- >>> import Control.Monad.Except
--
-- >>> canFail = throwError "it failed" :: Except String Int
-- >>> final = return 42 :: Except String Int