Author: lwall
Date: 2009-09-21 23:26:58 +0200 (Mon, 21 Sep 2009)
New Revision: 28347
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
typos
Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod 2009-09-21 21:12:29 UTC (rev 28346)
+++ docs/Perl6/Spec/S03-operators.pod 2009-09-21 21:26:58 UTC (rev 28347)
@@ -1755,7 +1755,7 @@
0,2,4 ... *+2 # same thing
<a b c> ... { .succ } # same as 'a'..*
-The function need not be monotoniccaly increasing, of course:
+The function need not be monotonically increasing, of course:
1 ... { -$_ } # 1, -1, 1, -1, 1, -1...
False ... &prefix:<!> # False, True, False...
@@ -1779,7 +1779,7 @@
1, 3, 5 ... * # odd numbers
1, 2, 4 ... * # powers of 2
-If there are only two values so far, C<*> assumes an arithmentic
+If there are only two values so far, C<*> assumes an arithmetic
progression. If there is only one value (or if the final values do
not support the requisite arithmetic), C<*> assumes incrementation
via C<.succ>. Hence these come out the same: