summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2019-12-09 12:05:15 -0500
committerBen Gamari <ben@well-typed.com>2019-12-09 12:05:15 -0500
commitd46a72e19e1b508358827e7270139f3273915697 (patch)
tree6eb25ced737bf3f88591c880669d94f5b172560f /libraries
parent0a4ca9eb152c6bfbc3aad71c180a38bbfeca5bfb (diff)
downloadhaskell-d46a72e19e1b508358827e7270139f3273915697.tar.gz
Fix comment typos
The below is only necessary to fix the CI perf fluke that happened in 9897e8c8ef0b19a9571ef97a1d9bb050c1ee9121: ------------------------- Metric Decrease: T5837 T6048 T9020 T12425 T12234 T13035 T12150 Naperian -------------------------
Diffstat (limited to 'libraries')
-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 8fbdc8ef24..55291cca4b 100644
--- a/libraries/base/GHC/IO.hs
+++ b/libraries/base/GHC/IO.hs
@@ -171,7 +171,7 @@ catchException !io handler = catch io handler
-- might catch either. If you are calling @catch@ with type
-- @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 propogated further up. If you call it again, you
+-- 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
-- 'IO' computation.
--