Skip to content

Commit dcd7218

Browse files
committed
Merge pull request #420 from okaoka/add-semicolon
Add a missing semicolon
2 parents be1f0cc + 0a5e098 commit dcd7218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Type/Hash.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,6 @@ The adverbs C<:v> and C<:k> return the key or value or a list their of.
289289
290290
my %h = a => 1, b => 2;
291291
say %h<a>:k; # a
292-
say %h<a b>:k # (a b)
292+
say %h<a b>:k; # (a b)
293293
294294
=end pod

0 commit comments

Comments
 (0)