From 170549336def88aa5883a525817913da4419268f Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 19 Nov 2002 11:28:51 +0000 Subject: [PATCH] [project @ 2002-11-19 11:28:51 by simonmar] Doc fix for unsafeInterleaveIO --- GHC/IOBase.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4