Author: autrijus
Date: Mon May  1 01:35:22 2006
New Revision: 9052

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

Log:
* S12: The example
    @array.=sort
  is better written as
    @array .= sort
  as it's not impossible for "=sort" to be a postfix operator
  on its own.

Modified: doc/trunk/design/syn/S12.pod
==============================================================================
--- doc/trunk/design/syn/S12.pod        (original)
+++ doc/trunk/design/syn/S12.pod        Mon May  1 01:35:22 2006
@@ -503,7 +503,7 @@
 
 You can call an in-place mutator method like this:
 
-    @array.=sort;
+    @array .= sort;
 
 If there is a C<self:sort> operator defined, that will be used.  Otherwise
 one will be autogenerated from the ordinary C<sort> operator, on the

Reply via email to