Skip to content

Commit 5f2c1fe

Browse files
authored
better word form, maybe.
(avoids spellcheck issue, also)
1 parent 8685200 commit 5f2c1fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/operators.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ Increments its argument by one, and returns the original value.X<|increment oper
699699
say $x; # 4
700700
701701
It works by calling the L<succ> method (for I<successor>) on its argument,
702-
which gives custom types the freedom to implement their own incrementation
702+
which gives custom types the freedom to implement their own increment
703703
semantics.
704704
705705
Note that this does not necessarily return its argument. For example for
@@ -722,7 +722,7 @@ Decrements its argument by one, and returns the original value.X<|decrement oper
722722
say $x; # 2
723723
724724
It works by calling the L<pred> method (for I<predecessor>) on its argument,
725-
which gives custom types the freedom to implement their own decrementation
725+
which gives custom types the freedom to implement their own decrement
726726
semantics.
727727
728728
Note that this does not necessarily return its argument. For example for

0 commit comments

Comments
 (0)