[project @ 2002-11-19 11:28:51 by simonmar]
authorsimonmar <unknown>
Tue, 19 Nov 2002 11:28:51 +0000 (11:28 +0000)
committersimonmar <unknown>
Tue, 19 Nov 2002 11:28:51 +0000 (11:28 +0000)
Doc fix for unsafeInterleaveIO

GHC/IOBase.lhs

index fcce633..690da24 100644 (file)
@@ -182,7 +182,7 @@ unsafePerformIO (IO m) = case m realWorld# of (# _, r #)   -> r
 'unsafeInterleaveIO' allows 'IO' computation to be deferred lazily.
 When passed a value of type @IO a@, the 'IO' will only be performed
 when the value of the @a@ is demanded.  This is used to implement lazy
-file reading, see 'IO.hGetContents'.
+file reading, see 'System.IO.hGetContents'.
 -}
 {-# NOINLINE unsafeInterleaveIO #-}
 unsafeInterleaveIO :: IO a -> IO a