summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorAristotle Pagaltzis <pagaltzis@gmx.de>2015-06-21 21:25:55 +0200
committerSteve Hay <steve.m.hay@googlemail.com>2015-10-13 08:18:06 +0100
commit1bb9edfeececc87d9f540b493cbd037f1365e73b (patch)
tree6e94f8289a4c9116daf269ab2027eef5c9c701f6 /pod/perlvar.pod
parent008babc05a7eae9a6e55c9da3da9f292668751d1 (diff)
downloadperl-1bb9edfeececc87d9f540b493cbd037f1365e73b.tar.gz
perlvar: fix list of defaulted array operators
(cherry picked from commit 256ca3d37ed232e10fbb2884be45691e745be7a9)
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 285531ef07..27db7691ac 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -167,7 +167,7 @@ X<@_> X<@ARG>
Within a subroutine the array C<@_> contains the parameters passed to
that subroutine. Inside a subroutine, C<@_> is the default array for
-the array operators C<push>, C<pop>, C<shift>, and C<unshift>.
+the array operators C<pop> and C<shift>.
See L<perlsub>.