Author: lwall
Date: 2010-06-02 20:02:31 +0200 (Wed, 02 Jun 2010)
New Revision: 31053

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[S03] copy-o spotted by Smylers++


Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2010-06-02 17:54:21 UTC (rev 31052)
+++ docs/Perl6/Spec/S03-operators.pod   2010-06-02 18:02:31 UTC (rev 31053)
@@ -4048,7 +4048,7 @@
     (1,2,3,4) «+« (1,2)   # 2,4         lhs dwims to (1,2,3,4).batch(2)
     (1,2,3,4) »+» (1,2)   # 2,4,4,6     rhs dwims to ((1,2) xx *).batch(4)
     (1,2,3)   »+» (1,2)   # 2,4,4,6     rhs dwims to ((1,2) xx *).batch(3)
-    (1,2,3)   »+» 1       # 2,4,4,6     rhs dwims to (1 xx *).batch(3)
+    (1,2,3)   »+» 1       # 2,3,4       rhs dwims to (1 xx *).batch(3)
 
 Another way to look at it is that the dwimmy list's elements are
 indexed modulo its number of elements so as to produce as many or as

Reply via email to