summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorJuerd <juerd@convolution.nl>2003-09-21 23:40:54 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-09-23 21:56:50 +0000
commitf83912f27d5903d07e19b71d691d929ef9066cbc (patch)
treedf89e5fe256e7921545d793231ea7bb2e75437f2 /pod/perlvar.pod
parentca37ab507eb0cfe686e1e8008a10e033024f46d5 (diff)
downloadperl-f83912f27d5903d07e19b71d691d929ef9066cbc.tar.gz
perlvar
Message-ID: <20030921194054.GD14702@c3.convolution.nl> p4raw-id: //depot/perl@21348
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod7
1 files changed, 3 insertions, 4 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 67a5665341..50d30d4a27 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -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