Skip to content
Snippets Groups Projects
Commit 739bb3ef authored by Sergey Vinokurov's avatar Sergey Vinokurov Committed by Ben Gamari
Browse files

Fix typo

(cherry picked from commit 37e78029845a04d0ab4cc05e1790c648facdcb1f)
parent 1cd5d6cd
No related merge requests found
......@@ -90,7 +90,7 @@ takeMVar :: MVar a -> IO a
takeMVar (MVar mvar#) = IO $ \ s# -> takeMVar# mvar# s#
-- |Atomically read the contents of an 'MVar'. If the 'MVar' is
-- currently empty, 'readMVar' will wait until its full.
-- currently empty, 'readMVar' will wait until it is full.
-- 'readMVar' is guaranteed to receive the next 'putMVar'.
--
-- 'readMVar' is multiple-wakeup, so when multiple readers are
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment