Author: larry
Date: Wed May 21 12:31:17 2008
New Revision: 14544
Modified:
doc/trunk/design/syn/S12.pod
Log:
S12 contradiction noted by pmichaud++
Modified: doc/trunk/design/syn/S12.pod
==============================================================================
--- doc/trunk/design/syn/S12.pod (original)
+++ doc/trunk/design/syn/S12.pod Wed May 21 12:31:17 2008
@@ -12,9 +12,9 @@
Maintainer: Larry Wall <[EMAIL PROTECTED]>
Date: 27 Oct 2004
- Last Modified: 23 Feb 2008
+ Last Modified: 21 May 2008
Number: 12
- Version: 58
+ Version: 59
=head1 Overview
@@ -704,12 +704,12 @@
If you name an attribute as a parameter, that attribute is initialized
directly, so
- submethod BUILD ($.tail, $!legs) {}
+ submethod BUILD ($!tail, $!legs) {}
is equivalent to
submethod BUILD ($tail, $legs) {
- $.tail = $tail;
+ $!tail = $tail;
$!legs = $legs;
}