From 28fb12f4e4059674e9396fc76a2783e0ae8798cd Mon Sep 17 00:00:00 2001 From: panne Date: Mon, 31 Jan 2005 21:07:15 +0000 Subject: [PATCH 1/1] [project @ 2005-01-31 21:07:15 by panne] Documentation fix only ("in" is a keyword) --- System/Process.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4