summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Grenrus <oleg.grenrus@iki.fi>2020-07-17 11:16:21 +0300
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-07-28 20:54:13 -0400
commit318bb17c9d3fbbe68eff706c38eb8e653cea3d83 (patch)
tree5a01f321d428426f538a726afa025b74918a6ee1
parentf305bbfd0d7afee8fe7464252fbfc167205220ae (diff)
downloadhaskell-318bb17c9d3fbbe68eff706c38eb8e653cea3d83.tar.gz
Fix typo in haddock
Spotted by `vilpan` on `#haskell`
-rw-r--r--libraries/base/GHC/IO.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/IO.hs b/libraries/base/GHC/IO.hs
index d75172ecdc..283020d973 100644
--- a/libraries/base/GHC/IO.hs
+++ b/libraries/base/GHC/IO.hs
@@ -173,7 +173,7 @@ catchException !io handler = catch io handler
-- @IO Int -> (ArithException -> IO Int) -> IO Int@ then the handler may
-- get run with @DivideByZero@ as an argument, or an @ErrorCall \"urk\"@
-- exception may be propagated further up. If you call it again, you
--- might get a the opposite behaviour. This is ok, because 'catch' is an
+-- might get the opposite behaviour. This is ok, because 'catch' is an
-- 'IO' computation.
--
catch :: Exception e