[PATCH 2/2] System.IO.Unsafe: cleanup: make unsafeFixIO pseudocode more valid
[email protected] Wed, 18 Sep 2013 16:07:04 +0300
| Newsgroups | gmane.comp.lang.haskell.ghc.devel,gmane.comp.lang.haskell.cvs.ghc |
|---|---|
| Message-ID | <[email protected]> |
From: Sergei Trofimovich <[email protected]> Signed-off-by: Sergei Trofimovich <[email protected]> --- System/IO/Unsafe.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/IO/Unsafe.hs b/System/IO/Unsafe.hs index 1971e9f..67068c5 100644 --- a/System/IO/Unsafe.hs +++ b/System/IO/Unsafe.hs @@ -33,7 +33,7 @@ import Control.Exception -- safe to use with multiple threads. The unsafety arises when used -- like this: -- --- > unsafeFixIO $ \r -> +-- > unsafeFixIO $ \r -> do -- > forkIO (print r) -- > return (...) -- -- 1.8.3.2