Skip to content

Commit decbae6

Browse files
stonedJJ
authored andcommitted
Fix examples' output
1 parent 2617a3d commit decbae6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/hashmap.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ for %h.keys.sort -> $k {
530530
# use sort to ease output comparisons
531531
print "$k => {%h{$k}}; ";
532532
}
533-
say ''; # OUTPUT: «a => 1; b => 2;»␤
533+
say ''; # OUTPUT: «a => 1; b => 2; ␤»
534534
=end code
535535
536536
replace key 'b' with 'bb' but retain 'b's value as the new key's value:
@@ -544,7 +544,7 @@ for %h.keys -> $k {
544544
for %h.keys.sort -> $k {
545545
print "$k => {%h{$k}}; ";
546546
}
547-
say ''; # OUTPUT: «a => 1; bb => 2;»␤
547+
say ''; # OUTPUT: «a => 1; bb => 2; ␤»
548548
=end code
549549
550550
=end pod

0 commit comments

Comments
 (0)