From: Ian Lynagh Date: Fri, 25 Feb 2011 21:46:14 +0000 (+0000) Subject: Grammar fix X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=471716a3e57d7e42f799b2e9274fb7b2a2a3017d Grammar fix --- diff --git a/Control/Concurrent/MVar.hs b/Control/Concurrent/MVar.hs index ae672a3..4e31f46 100644 --- a/Control/Concurrent/MVar.hs +++ b/Control/Concurrent/MVar.hs @@ -38,7 +38,8 @@ -- -- In particular, the "bigger" functions in this module ('readMVar', -- 'swapMVar', 'withMVar', 'modifyMVar_' and 'modifyMVar') are simply --- compositions a 'takeMVar' followed by a 'putMVar' with exception safety. +-- the composition of a 'takeMVar' followed by a 'putMVar' with +-- exception safety. -- These only have atomicity guarantees if all other threads -- perform a 'takeMVar' before a 'putMVar' as well; otherwise, they may -- block.