perlvar
authorJuerd <juerd@convolution.nl>
Sun, 21 Sep 2003 21:40:54 +0000 (23:40 +0200)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 23 Sep 2003 21:56:50 +0000 (21:56 +0000)
Message-ID: <20030921194054.GD14702@c3.convolution.nl>

p4raw-id: //depot/perl@21348

pod/perlvar.pod

index 67a5665..50d30d4 100644 (file)
@@ -189,10 +189,9 @@ test.  Outside a C<while> test, this will not happen.
 
 Special package variables when using sort(), see L<perlfunc/sort>.
 Because of this specialness $a and $b don't need to be declared
-(using local(), use vars, or our()) even when using the strict
-vars pragma.  Don't lexicalize them with C<my $a> or C<my $b>
-if you want to be able to use them in the sort() comparison block
-or function.
+(using use vars, or our()) even when using the C<strict 'vars'> pragma.
+Don't lexicalize them with C<my $a> or C<my $b> if you want to be
+able to use them in the sort() comparison block or function.
 
 =back