diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-09-20 22:51:39 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-09-20 22:51:39 -0700 |
commit | 74083ec6dad9d86012bcb7f27d85dc0ac4df6bf4 (patch) | |
tree | caf94dadedbf37c9bfcecb231847a860eb00987f /pod/perlsub.pod | |
parent | ae7a3cfaa7c05d7537a57944fcd3d1eec4080d3e (diff) | |
download | perl-74083ec6dad9d86012bcb7f27d85dc0ac4df6bf4.tar.gz |
Fix pod syntax in perlsub
Diffstat (limited to '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 9121519748..149a8a71d1 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -1096,7 +1096,7 @@ 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<my_function()->[0]>. The value passed as part of C<@_> will be a +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. |