From 50001a0d33c6c8c12e7dbffc3b2ce7e325383cb7 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 28 Nov 2003 11:08:54 +0000 Subject: [PATCH] [project @ 2003-11-28 11:08:54 by simonmar] Doc wibble --- System/IO.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/IO.hs b/System/IO.hs index f33a167..d189ac1 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -244,7 +244,7 @@ putChar c = hPutChar stdout c putStr :: String -> IO () putStr s = hPutStr stdout s --- | The same as 'putStrLn', but adds a newline character. +-- | The same as 'putStr', but adds a newline character. putStrLn :: String -> IO () putStrLn s = do putStr s -- 1.7.10.4