Author: lwall
Date: 2010-06-15 23:05:57 +0200 (Tue, 15 Jun 2010)
New Revision: 31271

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[S03] typos spotted by masak++


Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2010-06-15 20:35:27 UTC (rev 31270)
+++ docs/Perl6/Spec/S03-operators.pod   2010-06-15 21:05:57 UTC (rev 31271)
@@ -2042,10 +2042,10 @@
     "\xff", { $^prev.ord.pred.chr } ... "\0";
 
 You will note that this alternate definition doesn't change the meaning of
-any sequence that falls within a conventional range:
+any sequence that falls within a conventional rangechar range:
 
-    'a'..'z'
-    '9'..'0'
+    'a'...'z'
+    '9'...'0'
 
 If a series is generated using a non-monotonic C<.succ> function, it is
 possible for it never to reach the endpoint.  The following matches:
@@ -2109,7 +2109,7 @@
 
     0,1,2 ...^ 100,42    # same as ^100,42
 
-There is no corresponding exclusion on the left side.  The compile
+There is no corresponding exclusion on the left side.  The compiler
 may complain if it sees anything on the right that is not a literal:
 
     0,1,2 ...^ *

Reply via email to