summaryrefslogtreecommitdiff
path: root/pod/perlfaq7.pod
diff options
context:
space:
mode:
authorStephen P. Potter <spp@ds.net>2000-11-06 13:56:43 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-07 00:12:54 +0000
commit13a2d996abe42696bc5ca08abf08030d440c6148 (patch)
tree1919c2c419a4d5a14d2cbb83e40e7f0fe6abaddf /pod/perlfaq7.pod
parent9e29e5ff005da001be364f21377fa2a6364952d5 (diff)
downloadperl-13a2d996abe42696bc5ca08abf08030d440c6148.tar.gz
Pod updates
Message-Id: <200011062357.SAA18173@spotter.yi.org> p4raw-id: //depot/perl@7585
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r--pod/perlfaq7.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod
index 8040f192b2..9e559f7d0e 100644
--- a/pod/perlfaq7.pod
+++ b/pod/perlfaq7.pod
@@ -560,8 +560,8 @@ In summary, local() doesn't make what you think of as private, local
variables. It gives a global variable a temporary value. my() is
what you're looking for if you want private variables.
-See L<perlsub/"Private Variables via my()"> and L<perlsub/"Temporary
-Values via local()"> for excruciating details.
+See L<perlsub/"Private Variables via my()"> and
+L<perlsub/"Temporary Values via local()"> for excruciating details.
=head2 How can I access a dynamic variable while a similarly named lexical is in scope?