[project @ 2005-01-31 21:07:15 by panne]
[ghc-base.git] / 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