From: panne Date: Mon, 31 Jan 2005 21:07:15 +0000 (+0000) Subject: [project @ 2005-01-31 21:07:15 by panne] X-Git-Tag: nhc98-1-18-release~48 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=28fb12f4e4059674e9396fc76a2783e0ae8798cd;hp=c1ca624c2ce1460d64678be5daa195a09d793f9f;p=ghc-base.git [project @ 2005-01-31 21:07:15 by panne] Documentation fix only ("in" is a keyword) --- diff --git a/System/Process.hs b/System/Process.hs index e2539f5..918d5a8 100644 --- a/System/Process.hs +++ b/System/Process.hs @@ -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