Author: audreyt
Date: Sun Mar 11 08:17:58 2007
New Revision: 14331

Modified:
   doc/trunk/design/syn/S12.pod

Log:
* S12: Pass-throught methods should capture the entire
  invocation, not only the positional part.  Also remove
  the bogus "is context".

Modified: doc/trunk/design/syn/S12.pod
==============================================================================
--- doc/trunk/design/syn/S12.pod        (original)
+++ doc/trunk/design/syn/S12.pod        Sun Mar 11 08:17:58 2007
@@ -14,7 +14,7 @@
   Date: 27 Oct 2004
   Last Modified: 11 Mar 2007
   Number: 12
-  Version: 44
+  Version: 45
 
 =head1 Overview
 
@@ -1310,7 +1310,7 @@
 Since the method name (but nothing else) is known at class construction
 time, the following C<.wag> method is autogenerated for you:
 
-    method wag ([EMAIL PROTECTED] is context(Lazy)) { $!tail.wag(|@args) }
+    method wag (|$args) { $!tail.wag(|$args) }
 
 You can specify multiple method names:
 

Reply via email to