small typo in IO::Pipe pod
Slaven Rezic [Tue, 16 Apr 2002 12:31:10 +0000 (14:31 +0200)]
Message-Id: <200204161031.MAA08156@mom.intra.onlineoffice.de>

p4raw-id: //depot/perl@15946

ext/IO/lib/IO/Pipe.pm

index 0aaa2d7..0b5aac4 100644 (file)
@@ -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