Skip to content

Commit

Permalink
Merge pull request #4116 from 0rir/five-words
Browse files Browse the repository at this point in the history
A few corrections of english usage
  • Loading branch information
Altai-man committed Oct 8, 2022
2 parents 760bbc3 + 18b878c commit 04f6a99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Language/operators.pod6
Expand Up @@ -1066,7 +1066,7 @@ undefined values, it returns 0:
say $x; # OUTPUT: «1␤»
Increment on L<Str|/type/Str> will increment the number part of a string and
assign the resulting string to the container. A C<is rw>-container is required.
assign the resulting string to the container. An C<is rw> container is required.
my $filename = "somefile-001.txt";
say $filename++ for 1..3;
Expand Down Expand Up @@ -1109,7 +1109,7 @@ undefined values, it returns 0:
say $x; # OUTPUT: «-1␤»
Decrement on L<Str|/type/Str> will decrement the number part of a string and
assign the resulting string to the container. A C<is rw>-container is required.
assign the resulting string to the container. An C<is rw> container is required.
Crossing 0 is prohibited and throws C<X::AdHoc>.
my $filename = "somefile-003.txt";
Expand Down Expand Up @@ -2358,7 +2358,7 @@ class must create an instance method C<WHICH>, that should return a
L<ValueObjAt|/type/ValueObjAt> object that won't change for the lifetime of
the object.
Since Rakudo version 2021.07, ⩶ is an alias for this operator.
Since Rakudo version 2021.07, the Unicode character ⩶ is an alias for this operator.
=head2 infix C«=:=»
Expand Down

0 comments on commit 04f6a99

Please sign in to comment.