summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-06 13:36:57 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-06 13:36:57 +0000
commit36fb85f3330d45eeaf9d312c267fad71d5354c6c (patch)
tree65d9dfdc2758215a69fd42e5d1d5470e433d2278 /pod/perlsub.pod
parent3df15adcc3686bbc809ac9706048f258fd787941 (diff)
downloadperl-36fb85f3330d45eeaf9d312c267fad71d5354c6c.tar.gz
Mention state variables in perldiag. Add switch-related keywords
in the keyword listing section in perlfunc. Add a summary of C<state> in perlfunc. Fix a typo in the synopsis for C<our>. Don't say that C<my $_> is illegal in perlsub. p4raw-id: //depot/perl@28491
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod1
1 files changed, 0 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 71d6691e38..082d520d69 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -394,7 +394,6 @@ never fully qualified with the package name. In particular, you're not
allowed to try to make a package variable (or other global) lexical:
my $pack::var; # ERROR! Illegal syntax
- my $_; # also illegal (currently)
In fact, a dynamic variable (also known as package or global variables)
are still accessible using the fully qualified C<::> notation even while a