summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Cacqueray <tdecacqu@redhat.com>2020-03-21 15:14:10 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-03-25 22:42:06 -0400
commit7a04920b23376b2759b5049820400ddd40f7b89e (patch)
tree3e18602860728fca26910f06b12ee2d94d5f6fff
parent0de03cd78729dc58a846c64b645e71057ec5d24e (diff)
downloadhaskell-7a04920b23376b2759b5049820400ddd40f7b89e.tar.gz
Base: fix a typo in liftA doc
This change removes an extra '|' that should not be rendered in the liftA documentation. Tracking: #17929
-rw-r--r--libraries/base/GHC/Base.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Base.hs b/libraries/base/GHC/Base.hs
index 498964b86d..610e2996a8 100644
--- a/libraries/base/GHC/Base.hs
+++ b/libraries/base/GHC/Base.hs
@@ -679,7 +679,7 @@ class Functor f => Applicative f where
-- | Lift a function to actions.
-- This function may be used as a value for `fmap` in a `Functor` instance.
--
--- | Using @ApplicativeDo@: \'@'liftA' f as@\' can be understood as the
+-- Using @ApplicativeDo@: \'@'liftA' f as@\' can be understood as the
-- @do@ expression
--
--