diff options
author | Johan Vromans <jvromans@squirrel.nl> | 2011-05-24 08:35:37 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-05-24 08:39:21 -0700 |
commit | ceb12f1f0217ba8594a71e20be18f84b4356adba (patch) | |
tree | 0f252812a2821460209079ddea33b3ff0145c083 | |
parent | bbc73fd9d4a79a3c013fa67ca4cec4c514c014f1 (diff) | |
download | perl-ceb12f1f0217ba8594a71e20be18f84b4356adba.tar.gz |
[perl #91518] Fix minor typo in pod/perlsub.pod.
-rw-r--r-- | pod/perlsub.pod | 2 |
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. |