File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -288,13 +288,13 @@ TODO
288
288
= head2 Zip Operators
289
289
290
290
The zip metaoperator, C < Z > , will apply a given infix operator to pairs taken
291
- one left, one right, from it's arguments. The resulting list is returned.
291
+ one left, one right, from its arguments. The resulting list is returned.
292
292
293
293
my @l = <a b c> Z~ 1,2,3; # [a1 b2 c3]
294
294
295
295
If one of the operands runs out of elements prematurely, the zip operator will
296
296
stop. An infinite list can be used to repeat elements. A list with a final
297
- element of C < * > will repeat it's 2nd last element indefinitely.
297
+ element of C < * > will repeat its 2nd last element indefinitely.
298
298
299
299
my @l = <a b c d> Z~ ':' xx *; # <a: b: c: d:>
300
300
my @l = <a b c d> Z~ 1, 2, *; # <a1 b2 c2 d2>
You can’t perform that action at this time.
0 commit comments