From: Slaven Rezic Date: Tue, 16 Apr 2002 12:31:10 +0000 (+0200) Subject: small typo in IO::Pipe pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ddbf912790641017a0ae28c039dec8489579cc0c;p=p5sagit%2Fp5-mst-13.2.git small typo in IO::Pipe pod Message-Id: <200204161031.MAA08156@mom.intra.onlineoffice.de> p4raw-id: //depot/perl@15946 --- diff --git a/ext/IO/lib/IO/Pipe.pm b/ext/IO/lib/IO/Pipe.pm index 0aaa2d7..0b5aac4 100644 --- a/ext/IO/lib/IO/Pipe.pm +++ b/ext/IO/lib/IO/Pipe.pm @@ -166,15 +166,15 @@ IO::Pipe - supply object methods for pipes if($pid = fork()) { # Parent $pipe->reader(); - while(<$pipe> { - .... + while(<$pipe>) { + ... } } elsif(defined $pid) { # Child $pipe->writer(); - print $pipe .... + print $pipe ... } or @@ -184,7 +184,7 @@ IO::Pipe - supply object methods for pipes $pipe->reader(qw(ls -l)); while(<$pipe>) { - .... + ... } =head1 DESCRIPTION