From 47d4d2af6d13d4871f378e38d9a780837d93cf7c Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 12 Mar 2010 21:41:29 +0000 Subject: [PATCH] Tweak docs --- Control/Exception/Base.hs | 2 +- GHC/IO/Exception.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Control/Exception/Base.hs b/Control/Exception/Base.hs index 4c7ce95..5794de3 100644 --- a/Control/Exception/Base.hs +++ b/Control/Exception/Base.hs @@ -340,7 +340,7 @@ blocked = return False -- Note that we have to give a type signature to @e@, or the program -- will not typecheck as the type is ambiguous. While it is possible -- to catch exceptions of any type, see the previous section \"Catching all --- exceptions \" for an explanation of the problems with doing so. +-- exceptions\" for an explanation of the problems with doing so. -- -- For catching exceptions in pure (non-'IO') expressions, see the -- function 'evaluate'. diff --git a/GHC/IO/Exception.hs b/GHC/IO/Exception.hs index b8c9083..4bb01ca 100644 --- a/GHC/IO/Exception.hs +++ b/GHC/IO/Exception.hs @@ -64,7 +64,7 @@ blockedIndefinitelyOnMVar = toException BlockedIndefinitelyOnMVar ----- --- |The thread is awaiting to retry an STM transaction, but there are no +-- |The thread is waiting to retry an STM transaction, but there are no -- other references to any @TVar@s involved, so it can't ever continue. data BlockedIndefinitelyOnSTM = BlockedIndefinitelyOnSTM deriving Typeable -- 1.7.10.4