diff options
Diffstat (limited to 'libraries/base/Control/Concurrent/MVar.hs')
-rw-r--r-- | libraries/base/Control/Concurrent/MVar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Control/Concurrent/MVar.hs b/libraries/base/Control/Concurrent/MVar.hs index f78ad82d79..999c97f1b5 100644 --- a/libraries/base/Control/Concurrent/MVar.hs +++ b/libraries/base/Control/Concurrent/MVar.hs @@ -37,7 +37,7 @@ -- than 'GHC.Conc.STM'. They are appropriate for building synchronization -- primitives and performing simple interthread communication; however -- they are very simple and susceptible to race conditions, deadlocks or --- uncaught exceptions. Do not use them if you need perform larger +-- uncaught exceptions. Do not use them if you need to perform larger -- atomic operations such as reading from multiple variables: use 'GHC.Conc.STM' -- instead. -- |