Skip to content

Commit

Permalink
Grammar-o on its
Browse files Browse the repository at this point in the history
Possessive form of it.
  • Loading branch information
dbrunton committed Jan 14, 2016
1 parent 7286715 commit 4e08a04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/operators.pod
Original file line number Diff line number Diff line change
Expand Up @@ -288,13 +288,13 @@ TODO
=head2 Zip Operators
The zip metaoperator, C<Z>, will apply a given infix operator to pairs taken
one left, one right, from it's arguments. The resulting list is returned.
one left, one right, from its arguments. The resulting list is returned.
my @l = <a b c> Z~ 1,2,3; # [a1 b2 c3]
If one of the operands runs out of elements prematurely, the zip operator will
stop. An infinite list can be used to repeat elements. A list with a final
element of C<*> will repeat it's 2nd last element indefinitely.
element of C<*> will repeat its 2nd last element indefinitely.
my @l = <a b c d> Z~ ':' xx *; # <a: b: c: d:>
my @l = <a b c d> Z~ 1, 2, *; # <a1 b2 c2 d2>
Expand Down

0 comments on commit 4e08a04

Please sign in to comment.