Author: moritz
Date: 2010-03-12 13:27:44 +0100 (Fri, 12 Mar 2010)
New Revision: 30037

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[S03] two grammeros

Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2010-03-11 22:06:43 UTC (rev 30036)
+++ docs/Perl6/Spec/S03-operators.pod   2010-03-12 12:27:44 UTC (rev 30037)
@@ -1822,7 +1822,7 @@
 actually interested in; any additional list elements are treasured
 up lazily to be returned after the C<...> is done.
 
-The righthand first value is considered to the endpoint or limit of the
+The righthand first value is considered to be the endpoint or limit of the
 series that is to be generated from the lefthand side by the C<...>
 operator itself.
 
@@ -1856,7 +1856,7 @@
     1, 1, { $^a + $^b } ... * # 1,1,2,3,5,8,13,21...
 
 Any means of specifying a function will do, as long as you arrange
-return it as a list value rather than calling it:
+it as a list value rather than calling it:
 
     1, 1, &infix:<+> ... *    # 1,1,2,3,5,8...
     1, 1, &[+] ... *          # same thing

Reply via email to