summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-09-20 22:51:39 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-09-20 22:51:39 -0700
commit74083ec6dad9d86012bcb7f27d85dc0ac4df6bf4 (patch)
treecaf94dadedbf37c9bfcecb231847a860eb00987f /pod/perlsub.pod
parentae7a3cfaa7c05d7537a57944fcd3d1eec4080d3e (diff)
downloadperl-74083ec6dad9d86012bcb7f27d85dc0ac4df6bf4.tar.gz
Fix pod syntax in perlsub
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod2
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.