diff options
author | Robin Barker <RMBarker@cpan.org> | 2007-11-09 14:40:22 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-12-26 16:09:35 +0000 |
commit | 62ba2c934831b412d226e94c53b2ed4d0a5c0726 (patch) | |
tree | ad1297657208fd82dd3d356ce52e83a6d80f2993 /pod | |
parent | d6f4ea2ea9eb93efd8fa134c00bc168187be4e43 (diff) | |
download | perl-62ba2c934831b412d226e94c53b2ed4d0a5c0726.tar.gz |
change/correction to 32246
From: "Robin Barker" <Robin.Barker@npl.co.uk>
Message-ID: <2C2E01334A940D4792B3E115F95B722601604912@exchsvr1.npl.ad.local>
p4raw-id: //depot/perl@32732
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl5100delta.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perl5100delta.pod b/pod/perl5100delta.pod index 695dc232ad..7f6032f7e3 100644 --- a/pod/perl5100delta.pod +++ b/pod/perl5100delta.pod @@ -228,9 +228,9 @@ overriding the lexical declaration with C<our $_>. (Rafael Garcia-Suarez) =head2 The C<_> prototype A new prototype character has been added. C<_> is equivalent to C<$> but -defaults to C<$_> if the corresponding argument isn't supplied. (both C<$> -and C<_> denote a scalar). Due to the optional nature of the argument, you -can only use it at the end of a prototype, or before a semicolon. +defaults to C<$_> if the corresponding argument isn't supplied (both C<$> +and C<_> denote a scalar). Due to the optional nature of the argument, +you can only use it at the end of a prototype, or before a semicolon. This has a small incompatible consequence: the prototype() function has been adjusted to return C<_> for some built-ins in appropriate cases (for |