diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-06-23 23:22:29 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-24 08:19:27 -0700 |
commit | b91b7d1aba69eb050d639e18602ef68fcdd4bbb1 (patch) | |
tree | c1cca5c732aeb616fa4b5ba9a3a8b7731e41773e /pod/perlsub.pod | |
parent | 062678b2241d3d1cc3a46f80f402cf4147b825f1 (diff) | |
download | perl-b91b7d1aba69eb050d639e18602ef68fcdd4bbb1.tar.gz |
Update proto docs after prev commit
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r-- | pod/perlsub.pod | 4 |
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. |