Skip to content

Commit 1993a30

Browse files
committed
no preposition needed with 'trust'
1 parent 6126c6c commit 1993a30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ my $set = <a b c>.Set;
748748
# OUTPUT: «c => True␤b => True␤a => True␤»
749749
=end code
750750
751-
Every iteration might (and will) yield a different order, so you cannot trust on
751+
Every iteration might (and will) yield a different order, so you cannot trust
752752
a particular sequence of the elements of a set. If order does not matter, just
753753
use them that way. If it does, use C<sort>
754754

doc/Type/Mu.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ In non-sink context, C<say> will always return C<True>.
441441
say (1,[1,2],"foo",Mu).map: so *.say ;
442442
# OUTPUT: «1␤[1 2]␤foo␤(Mu)␤(True True True True)␤»
443443
444-
However, this behavior is just conventional and you shouldn't trust on it for
444+
However, this behavior is just conventional and you shouldn't trust it for
445445
your code. It's useful, however, to explain certain behaviors.
446446
447447
C<say> is first printing out in C<*.say>, but the outermost C<say> is printing

0 commit comments

Comments
 (0)