summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorJohan Vromans <jvromans@squirrel.nl>2011-05-24 08:35:37 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-05-24 08:39:21 -0700
commitceb12f1f0217ba8594a71e20be18f84b4356adba (patch)
tree0f252812a2821460209079ddea33b3ff0145c083 /pod/perlsub.pod
parentbbc73fd9d4a79a3c013fa67ca4cec4c514c014f1 (diff)
downloadperl-ceb12f1f0217ba8594a71e20be18f84b4356adba.tar.gz
[perl #91518] Fix minor typo in pod/perlsub.pod.
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 7a14f76d0b..81dbfa1a22 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -554,7 +554,7 @@ values to global (meaning package) variables. It does I<not> create
a local variable. This is known as dynamic scoping. Lexical scoping
is done with C<my>, which works more like C's auto declarations.
-Some types of lvalues can be localized as well : hash and array elements
+Some types of lvalues can be localized as well: hash and array elements
and slices, conditionals (provided that their result is always
localizable), and symbolic references. As for simple variables, this
creates new, dynamically scoped values.