summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/IO/lib/IO/Pipe.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/IO/lib/IO/Pipe.pm b/ext/IO/lib/IO/Pipe.pm
index 0aaa2d79cb..0b5aac46ef 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