Skip to content

Commit e09686f

Browse files
committed
Reflow
1 parent 4a05a2f commit e09686f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

doc/Type/Map.pod6

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ Defined as:
153153
Returns all keys and their respective values as a L<Seq|/type/Seq> of C<Pair>s
154154
where the keys and values have been exchanged, i.e. the opposite of method
155155
L<pairs|#method_pairs>. Unlike the L<C<invert>|/type/Map#method_invert> method,
156-
there is
157-
no attempt to expand list values into multiple pairs.
156+
there is no attempt to expand list values into multiple pairs.
158157
159158
my $m = Map.new('a' => (2, 3), 'b' => 17);
160159
say $m.antipairs; # OUTPUT: «((2 3) => a 17 => b)␤»
@@ -168,8 +167,7 @@ Defined as:
168167
Returns all keys and their respective values as a L<Seq|/type/Seq> of C<Pair>s
169168
where the keys and values have been exchanged. The difference between C<invert>
170169
and L<C<antipairs>|/type/Map#method_antipairs> is that C<invert> expands list
171-
values into
172-
multiple pairs.
170+
values into multiple pairs.
173171
174172
my $m = Map.new('a' => (2, 3), 'b' => 17);
175173
say $m.invert; # OUTPUT: «(2 => a 3 => a 17 => b)␤»

0 commit comments

Comments
 (0)