summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-06-23 23:22:29 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-06-24 08:19:27 -0700
commitb91b7d1aba69eb050d639e18602ef68fcdd4bbb1 (patch)
treec1cca5c732aeb616fa4b5ba9a3a8b7731e41773e /pod/perlsub.pod
parent062678b2241d3d1cc3a46f80f402cf4147b825f1 (diff)
downloadperl-b91b7d1aba69eb050d639e18602ef68fcdd4bbb1.tar.gz
Update proto docs after prev commit
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 01c525d069..4cc0b9c5e7 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -1077,8 +1077,8 @@ corresponding built-in.
Any backslashed prototype character represents an actual argument
that must start with that character (optionally preceded by C<my>,
-C<our> or C<local>), with the exception of C<$>, which will accept a
-hash or array element even without a dollar sign, such as
+C<our> or C<local>), with the exception of C<$>, which will
+accept any scalar lvalue expression, such as C<$foo = 7> or
C<< my_function()->[0] >>. The value passed as part of C<@_> will be a
reference to the actual argument given in the subroutine call,
obtained by applying C<\> to that argument.