This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #54424] perlipc mistype
authorandrew@sundale.net <andrew@sundale.net>
Sun, 18 May 2008 22:20:06 +0000 (15:20 -0700)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sun, 1 Jun 2008 13:17:40 +0000 (13:17 +0000)
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

pod/perlipc.pod

index f0722f7..3e916a0 100644 (file)
@@ -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
     }