Author: moritz
Date: 2009-09-13 19:42:10 +0200 (Sun, 13 Sep 2009)
New Revision: 28233

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[S03] ^4 cannot mean 0..3 and 0..^4 at the same time, because they are not the 
same

Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2009-09-13 17:42:03 UTC (rev 28232)
+++ docs/Perl6/Spec/S03-operators.pod   2009-09-13 17:42:10 UTC (rev 28233)
@@ -3014,7 +3014,7 @@
 =item *
 
 The unary C<^> operator generates a range from C<0> up to
-one less than its argument.  So C<^4> is short for C<0..^4> or C<0..3>.
+its argument, exclusively.  So C<^4> is short for C<0..^4>.
 
     for ^4 { say $_ } # 0, 1, 2, 3
 

Reply via email to