Skip to content

Commit 009c4f4

Browse files
committed
Merge pull request #351 from dbrunton/patch-1
Grammar-o on its
2 parents 86f452a + 4e08a04 commit 009c4f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/operators.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,13 @@ TODO
288288
=head2 Zip Operators
289289
290290
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.
292292
293293
my @l = <a b c> Z~ 1,2,3; # [a1 b2 c3]
294294
295295
If one of the operands runs out of elements prematurely, the zip operator will
296296
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.
298298
299299
my @l = <a b c d> Z~ ':' xx *; # <a: b: c: d:>
300300
my @l = <a b c d> Z~ 1, 2, *; # <a1 b2 c2 d2>

0 commit comments

Comments
 (0)