From: simonmar Date: Tue, 19 Nov 2002 11:28:51 +0000 (+0000) Subject: [project @ 2002-11-19 11:28:51 by simonmar] X-Git-Tag: nhc98-1-18-release~797 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=170549336def88aa5883a525817913da4419268f;p=haskell-directory.git [project @ 2002-11-19 11:28:51 by simonmar] Doc fix for unsafeInterleaveIO --- diff --git a/GHC/IOBase.lhs b/GHC/IOBase.lhs index fcce633..690da24 100644 --- a/GHC/IOBase.lhs +++ b/GHC/IOBase.lhs @@ -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