[project @ 2004-10-17 00:08:08 by ross]
authorross <unknown>
Sun, 17 Oct 2004 00:08:09 +0000 (00:08 +0000)
committerross <unknown>
Sun, 17 Oct 2004 00:08:09 +0000 (00:08 +0000)
markup

Data/IORef.hs
Foreign.hs

index f996a94..7a6ec7d 100644 (file)
@@ -72,7 +72,7 @@ modifyIORef ref f = writeIORef ref . f =<< readIORef ref
 --
 -- Extending the atomicity to multiple 'IORef's is problematic, so it
 -- is recommended that if you need to do anything more complicated
--- then using 'MVar' instead is a good idea.
+-- then using 'Control.Concurrent.MVar.MVar' instead is a good idea.
 --
 atomicModifyIORef :: IORef a -> (a -> (a,b)) -> IO b
 #if defined(__GLASGOW_HASKELL__)
index d4bbb3d..fc25159 100644 (file)
@@ -24,8 +24,8 @@ module Foreign
         , module Foreign.Storable
         , module Foreign.Marshal
 
-        -- For compatibility with the FFI addendum only.  The recommended
-        -- place to get this from is System.IO.Unsafe.
+        -- | For compatibility with the FFI addendum only.  The recommended
+        -- place to get this from is "System.IO.Unsafe".
         , unsafePerformIO
         ) where