Skip to content

Commit 5bc1a46

Browse files
authored
Merge pull request #827 from titsuki/add-semicolon
Add a missing semicolon
2 parents b86422c + 92840d9 commit 5bc1a46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Type/Hash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ for lists of literal strings, with and without interpolation.
2424
dd %h<oranges bananas>;
2525
# OUTPUT«("round", "bendy")␤»
2626
my $fruit = 'bananas';
27-
dd %h«oranges $fruit»
27+
dd %h«oranges $fruit»;
2828
# OUTPUT«("round", "bendy")␤»
2929
3030
You can add new pairs simply by assigning to an unused key:

0 commit comments

Comments
 (0)