This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix pod syntax in perlsub
authorFather Chrysostomos <sprout@cpan.org>
Tue, 21 Sep 2010 05:51:39 +0000 (22:51 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 21 Sep 2010 05:51:39 +0000 (22:51 -0700)
pod/perlsub.pod

index 9121519..149a8a7 100644 (file)
@@ -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.