Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #865 from titsuki/fix-pair
Fix Pair examples
  • Loading branch information
titsuki committed Aug 27, 2016
2 parents 85894ad + fdb41ec commit 4357ca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Pair.pod6
Expand Up @@ -54,7 +54,7 @@ Defined as:
Returns the I<key> part of the C<Pair>.
my $p = (Perl => 6);
say $p.key;
say $p.key; # Perl
=head2 method value
Expand All @@ -65,7 +65,7 @@ Defined as:
Returns the I<value> part of the C<Pair>.
my $p = (Perl => 6);
say $p.key;
say $p.value; # 6
=head2 infix cmp
Expand Down

0 comments on commit 4357ca3

Please sign in to comment.