Skip to content

Commit 98fa7f9

Browse files
authored
add missing comma
1 parent 3a35ce0 commit 98fa7f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/hashmap.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ Note that the order of the keys and values printed cannot be relied upon; the
405405
elements of a hash are not always stored the same way in memory for different
406406
runs of the same program. In fact, since version 2018.05, the order is
407407
guaranteed to be different in every invocation. Sometimes one wishes to process
408-
the elements sorted on, e.g. the keys of the hash. If one wishes to print the
408+
the elements sorted on, e.g., the keys of the hash. If one wishes to print the
409409
list of vowels in alphabetical order then one would write
410410
411411
my %vowels = 'a' => 1, 'e' => 2, 'i' => 3, 'o' => 4, 'u' => 5;

0 commit comments

Comments
 (0)