Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Pair examples
  • Loading branch information
titsuki committed Aug 27, 2016
1 parent 7c190ed commit fdb41ec
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 fdb41ec

Please sign in to comment.