Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better word form, maybe.
(avoids spellcheck issue, also)
  • Loading branch information
coke committed Oct 19, 2016
1 parent 8685200 commit 5f2c1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/operators.pod6
Expand Up @@ -699,7 +699,7 @@ Increments its argument by one, and returns the original value.X<|increment oper
say $x; # 4
It works by calling the L<succ> method (for I<successor>) on its argument,
which gives custom types the freedom to implement their own incrementation
which gives custom types the freedom to implement their own increment
semantics.
Note that this does not necessarily return its argument. For example for
Expand All @@ -722,7 +722,7 @@ Decrements its argument by one, and returns the original value.X<|decrement oper
say $x; # 2
It works by calling the L<pred> method (for I<predecessor>) on its argument,
which gives custom types the freedom to implement their own decrementation
which gives custom types the freedom to implement their own decrement
semantics.
Note that this does not necessarily return its argument. For example for
Expand Down

0 comments on commit 5f2c1fe

Please sign in to comment.