Skip to content

Commit 8414910

Browse files
authored
avoid pluralizing with 's
(also remove 'ss)
1 parent 28c6488 commit 8414910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Type/Str.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ returns C<Any>.
730730
my $match = $some-string.subst-mutate(/foo/, "string");
731731
say $some-string; #-> Some string
732732
say $match; #-> 「foo」
733-
$some-string.subst-mutate(/<[oe]>/, '', :g); # remove all o'ss and e's, notice the :g named argument from .subst
733+
$some-string.subst-mutate(/<[oe]>/, '', :g); # remove every o and e, notice the :g named argument from .subst
734734
735735
=head2 routine substr
736736

0 commit comments

Comments
 (0)