In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/62c2e3c53c95143112488f21098f7907a4e338ab?hp=a55ce5b7e3bbc3afc7528d43a301feef63167f32>

- Log -----------------------------------------------------------------
commit 62c2e3c53c95143112488f21098f7907a4e338ab
Author: Doug Bell <[email protected]>
Date:   Sat Oct 25 17:32:59 2014 -0500

    fix change description has incorrect proto
    
    The incompatible change deals with the (*) proto
-----------------------------------------------------------------------

Summary of changes:
 pod/perl5214delta.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pod/perl5214delta.pod b/pod/perl5214delta.pod
index 866a12b..67876ff 100644
--- a/pod/perl5214delta.pod
+++ b/pod/perl5214delta.pod
@@ -42,7 +42,7 @@ exhibited buggy behaviour.
 Now it has been changed, so subroutines always take precedence over barewords,
 which brings it into conformity with similarly prototyped built-in functions:
 
-    sub splat($) { ... }
+    sub splat(*) { ... }
     sub foo { ... }
     splat(foo); # now always splat(foo())
     splat(bar); # still splat('bar') as before

--
Perl5 Master Repository

Reply via email to