From: Anton Tagunov Date: Mon, 11 Mar 2002 23:27:47 +0000 (+0300) Subject: Re[2]: [Patch docs] perlsub. Re: [ID 20020227.012], [ID 20020227.018] X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=17b63f683fb43fba07a1f7dfb8799f26fab23ec1;p=p5sagit%2Fp5-mst-13.2.git Re[2]: [Patch docs] perlsub. Re: [ID 20020227.012], [ID 20020227.018] Message-Id: <19414222180.20020311232747@motor.ru> p4raw-id: //depot/perl@15190 --- diff --git a/pod/perlsub.pod b/pod/perlsub.pod index 7933dc2..cff3eda 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -169,7 +169,7 @@ Do not, however, be tempted to do this: Like the flattened incoming parameter list, the return list is also flattened on return. So all you have managed to do here is stored -everything in C<@a> and made C<@b> an empty list. See +everything in C<@a> and made C<@b> empty. See L for alternatives. A subroutine may be called using an explicit C<&> prefix. The @@ -727,7 +727,7 @@ table entries: sub ioqueue { local (*READER, *WRITER); # not my! - pipe (READER, WRITER); or die "pipe: $!"; + pipe (READER, WRITER) or die "pipe: $!"; return (*READER, *WRITER); } ($head, $tail) = ioqueue();