Re[2]: [Patch docs] perlsub. Re: [ID 20020227.012], [ID 20020227.018]
Anton Tagunov [Mon, 11 Mar 2002 23:27:47 +0000 (02:27 +0300)]
   Message-Id: <19414222180.20020311232747@motor.ru>

p4raw-id: //depot/perl@15190

pod/perlsub.pod

index 7933dc2..cff3eda 100644 (file)
@@ -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<Pass by Reference> 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();