Skip to content

Commit

Permalink
Merge pull request #3256 from sztanyi/patch-1
Browse files Browse the repository at this point in the history
correct output in comment
  • Loading branch information
Altai-man committed Mar 9, 2020
2 parents 950f1c2 + 321f1fd commit 2c24bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Language/hashmap.pod6
Expand Up @@ -317,7 +317,7 @@ sleep 1;
my $second-instant = now;
%intervals{ $second-instant } = "Logging this Instant for spurious raisins.";
say ($first-instant, $second-instant) ~~ %intervals.keys; # OUTPUT: «False␤»
say ($first-instant, $second-instant) ~~ %intervals.keys.sort; # OUTPUT: «False␤»
say ($first-instant, $second-instant) ~~ %intervals.keys.sort; # OUTPUT: «True␤»
say ($first-instant, $second-instant) === %intervals.keys.sort; # OUTPUT: «False␤»
say $first-instant === %intervals.keys.sort[0]; # OUTPUT: «True␤»
Expand Down

0 comments on commit 2c24bc9

Please sign in to comment.