Skip to content

Commit 0b32e67

Browse files
author
Jan-Olof Hendig
committed
Forgot to change Pairs
1 parent 1774c09 commit 0b32e67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Map.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ Returns a C<Seq> of all values in the Map.
118118
119119
Defined as:
120120
121-
method pairs(Map:D: --> List:D)
121+
method pairs(Map:D: --> Seq:D)
122122
123-
Returns a list of all pairs in the Map.
123+
Returns a C<Seq> of all pairs in the Map.
124124
125125
my $m = Map.new('a' => (2, 3), 'b' => 17);
126126
say $m.pairs; # OUTPUT: «(a => (2 3) b => 17)␤»

0 commit comments

Comments
 (0)