diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-16 20:31:38 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-16 20:31:38 -0800 |
commit | 05d4ea3f27efa621f7a8beda83407b3d57609b75 (patch) | |
tree | 03f1941697e27fc15e0b43bc6e988cd3f6b48528 /pod/perlvar.pod | |
parent | 241a59d9f3f232f37396634c6cf6292cd0feb73b (diff) | |
download | perl-05d4ea3f27efa621f7a8beda83407b3d57609b75.tar.gz |
perlvar: Don’t mention 5.9
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r-- | pod/perlvar.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 2a83af3d00..38356c31e2 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -144,7 +144,7 @@ test. Outside a C<while> test, this will not happen. =back As C<$_> is a global variable, this may lead in some cases to unwanted -side-effects. As of perl 5.9.1, you can now use a lexical version of +side-effects. As of perl 5.10, you can now use a lexical version of C<$_> by declaring it in a file or in a block with C<my>. Moreover, declaring C<our $_> restores the global C<$_> in the current scope. |