From: andrew@sundale.net Date: Sun, 18 May 2008 22:20:06 +0000 (-0700) Subject: [perl #54424] perlipc mistype X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=848ead8701702e34c72a40f4909900d964429249;p=p5sagit%2Fp5-mst-13.2.git [perl #54424] perlipc mistype From: andrew@sundale.net (via RT) Message-ID: p4raw-id: //depot/perl@33977 --- diff --git a/pod/perlipc.pod b/pod/perlipc.pod index f0722f7..3e916a0 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -581,7 +581,7 @@ you opened whatever your kid writes to his STDOUT. open (FILE, "> /safe/file") || die "can't open /safe/file: $!"; while () { - print FILE; # child's STDIN is parent's KID + print FILE; # child's STDIN is parent's KID_TO_WRITE } exit; # don't forget this }