diff options
author | andrew@sundale.net <andrew@sundale.net> | 2008-05-18 15:20:06 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-06-01 13:17:40 +0000 |
commit | 848ead8701702e34c72a40f4909900d964429249 (patch) | |
tree | b3c114eca8308e0f5dfd899abd3ba12c43125012 /pod/perlipc.pod | |
parent | 597c4554ca87aa4325a00c70a0fbb22acbfcfa07 (diff) | |
download | perl-848ead8701702e34c72a40f4909900d964429249.tar.gz |
[perl #54424] perlipc mistype
From: andrew@sundale.net (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-11257-1211174406-1790.54424-75-0@perl.org>
p4raw-id: //depot/perl@33977
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index f0722f72aa..3e916a07af 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 (<STDIN>) { - 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 } |