This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: minor grammar fixes
authorRicardo Signes <rjbs@cpan.org>
Fri, 19 Jul 2013 14:58:23 +0000 (10:58 -0400)
committerRicardo Signes <rjbs@cpan.org>
Fri, 19 Jul 2013 14:58:23 +0000 (10:58 -0400)
pod/perldelta.pod

index b6334ab..dcae734 100644 (file)
@@ -34,11 +34,11 @@ whether a bareword is considered a method name or sub call.  This now
 applies also to ";;;*".
 
 Whitespace has long been allowed inside subroutine prototypes, so
 applies also to ";;;*".
 
 Whitespace has long been allowed inside subroutine prototypes, so
-C<sub( $ $ )> is equivalent to C<sub($$)>.  But it was stripped when the
-subroutine was parse.  Hence, whitespace was I<not> allowed in prototypes
-set by C<Scalar::Util::set_prototype>.  Now it is permitted, and the parser
-no longer strips whitespace.  This means C<prototype &mysub> returns the
-original prototype, whitespace and all.
+C<sub( $ $ )> is equivalent to C<sub($$)>, but until now it was stripped
+when the subroutine was parsed.  Hence, whitespace was I<not> allowed in
+prototypes set by C<Scalar::Util::set_prototype>.  Now it is permitted,
+and the parser no longer strips whitespace.  This means
+C<prototype &mysub> returns the original prototype, whitespace and all.
 
 =head1 Security
 
 
 =head1 Security