Skip to content

Commit 662da2d

Browse files
authored
Fix #1312
1 parent 75102c5 commit 662da2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/testing.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,9 @@ sub string-info(Str() $_) {
411411
))
412412
}
413413
414-
is-deeply string-info('I ♥ Perl 6'), Map.new((
415-
:10length,
416-
char-counts => Bag.new-from-pairs: ( :5letters, :1digits, :4other, )
414+
is-deeply string-info('42 Butterflies ♥ Perl'), Map.new((
415+
:21length,
416+
char-counts => Bag.new-from-pairs: ( :15letters, :2digits, :4other, )
417417
)), 'string-info gives right info';
418418
=end code
419419

0 commit comments

Comments
 (0)