Skip to content

Commit

Permalink
Tidy clunky language.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfa committed Mar 20, 2018
1 parent 23004a5 commit de48b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/traps.pod6
Expand Up @@ -677,8 +677,8 @@ in mind that C<+=> isn't defined as method on the left hand argument
@a = @a + 10;
say @a; # OUTPUT: «[13]␤»
Note that C<@a> is assigned the result of adding C<@a> and C<10>; as such,
that the array is coerced into numeric context, added to C<10> then assigned
Note that C<@a> is assigned the result of adding C<@a> and C<10>;
the array is coerced into numeric context, added to C<10> then assigned
back to C<@a>:
my @a = 1, 2, 3;
Expand Down

0 comments on commit de48b9d

Please sign in to comment.