[project @ 2005-01-31 21:07:15 by panne]
authorpanne <unknown>
Mon, 31 Jan 2005 21:07:15 +0000 (21:07 +0000)
committerpanne <unknown>
Mon, 31 Jan 2005 21:07:15 +0000 (21:07 +0000)
Documentation fix only ("in" is a keyword)

System/Process.hs

index e2539f5..918d5a8 100644 (file)
@@ -172,8 +172,8 @@ runInteractiveCommand string = do
 
     For example, to start a process and feed a string to its stdin:
    
->   (in,out,err,pid) <- runInteractiveProcess "..."
->   forkIO (hPutStr in str)
+>   (inp,out,err,pid) <- runInteractiveProcess "..."
+>   forkIO (hPutStr inp str)
 -}
 runInteractiveProcess
   :: FilePath                  -- ^ Filename of the executable