Author: lwall
Date: 2010-02-03 02:28:18 +0100 (Wed, 03 Feb 2010)
New Revision: 29626

Modified:
   docs/Perl6/Spec/S13-overloading.pod
Log:
[S13] *@@ ---> **@


Modified: docs/Perl6/Spec/S13-overloading.pod
===================================================================
--- docs/Perl6/Spec/S13-overloading.pod 2010-02-03 01:25:51 UTC (rev 29625)
+++ docs/Perl6/Spec/S13-overloading.pod 2010-02-03 01:28:18 UTC (rev 29626)
@@ -13,8 +13,8 @@
 
     Created: 2 Nov 2004
 
-    Last Modified: 27 Dec 2008
-    Version: 12
+    Last Modified: 2 Feb 2010
+    Version: 13
 
 =head1 Overview
 
@@ -160,14 +160,14 @@
 routine, array, or hash.  The long forms are as follows:
 
     method postcircumfix:<( )> ($capture) {...}
-    method postcircumfix:<[ ]> (*@@slice) {...}
-    method postcircumfix:<{ }> (*@@slice) {...}
+    method postcircumfix:<[ ]> (*...@slice) {...}
+    method postcircumfix:<{ }> (*...@slice) {...}
 
 Those are a bit unwieldy, so you may also use these short forms:
 
     method &.( $capture ) {...}
-    method @.[ *@@slice ] {...}
-    method %.{ *@@slice } {...}
+    method @.[ *...@slice ] {...}
+    method %.{ *...@slice } {...}
 
 The sigil-dot sequence in these short forms autogenerates the
 corresponding public operators, in exactly the same way that

Reply via email to