From: Ian Lynagh Date: Fri, 12 Mar 2010 21:41:29 +0000 (+0000) Subject: Tweak docs X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=47d4d2af6d13d4871f378e38d9a780837d93cf7c;p=ghc-base.git Tweak docs --- 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