[project @ 2003-11-28 11:08:54 by simonmar]
authorsimonmar <unknown>
Fri, 28 Nov 2003 11:08:54 +0000 (11:08 +0000)
committersimonmar <unknown>
Fri, 28 Nov 2003 11:08:54 +0000 (11:08 +0000)
Doc wibble

System/IO.hs

index f33a167..d189ac1 100644 (file)
@@ -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