summaryrefslogtreecommitdiff
path: root/pod/perllol.pod
diff options
context:
space:
mode:
authorWalt Mankowski <waltman@pobox.com>2011-09-10 00:00:31 -0400
committerFather Chrysostomos <sprout@cpan.org>2011-09-09 21:44:30 -0700
commite001c7126641d25781fc1e649e4b35356a346586 (patch)
tree63a459d6100b52d580ccaa8de11f5535cd8bfd34 /pod/perllol.pod
parentc7b956bbbaff0c4616c7bf80a5b723a58b55bbf6 (diff)
downloadperl-e001c7126641d25781fc1e649e4b35356a346586.tar.gz
Fixed repeated words
Diffstat (limited to 'pod/perllol.pod')
-rw-r--r--pod/perllol.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perllol.pod b/pod/perllol.pod
index 8c6c0563f8..b35a0febb3 100644
--- a/pod/perllol.pod
+++ b/pod/perllol.pod
@@ -174,7 +174,7 @@ Prior to Perl 5.14, this wouldn't even compile:
push $AoA[0], "wilma", "betty"; # implicit deref
-How come? Because once upon a time, the argument to push() had to be be a
+How come? Because once upon a time, the argument to push() had to be a
real array, not just a reference to one. That's no longer true. In fact,
the line marked "implicit deref" above works just fine--in this
instance--to do what the one that says explicit deref did.