Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
avoid pluralizing with 's
(also remove 'ss)
  • Loading branch information
coke committed Oct 19, 2016
1 parent 28c6488 commit 8414910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Type/Str.pod6
Expand Up @@ -730,7 +730,7 @@ returns C<Any>.
my $match = $some-string.subst-mutate(/foo/, "string");
say $some-string; #-> Some string
say $match; #-> 「foo」
$some-string.subst-mutate(/<[oe]>/, '', :g); # remove all o'ss and e's, notice the :g named argument from .subst
$some-string.subst-mutate(/<[oe]>/, '', :g); # remove every o and e, notice the :g named argument from .subst
=head2 routine substr
Expand Down

0 comments on commit 8414910

Please sign in to comment.