From 471716a3e57d7e42f799b2e9274fb7b2a2a3017d Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 25 Feb 2011 21:46:14 +0000 Subject: [PATCH 1/1] Grammar fix --- Control/Concurrent/MVar.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. -- 1.7.10.4