Skip to content

Commit

Permalink
Fixes said link (and others) closes #2414
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Oct 25, 2018
1 parent 70ac793 commit 4857a9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/Language/operators.pod6
Expand Up @@ -423,7 +423,7 @@ quickly.
1..3 X~ <a b> # RESULT: «<1a, 1b, 2a, 2b, 3a, 3b>␤»
=head1 Zip operators
=head1 Zip metaoperator
X<|Z (zip metaoperator)>
The zip metaoperator (which is not the same thing as L<Z|#infix_Z>) will
Expand Down Expand Up @@ -1750,7 +1750,7 @@ Mnemonic: I<less or equal>
multi sub infix:<before>(Str:D, Str:D)
multi sub infix:<before>(Version:D, Version:D)
Generic ordering, uses the same semantics as L<cmp|#infix cmp>.
Generic ordering, uses the same semantics as L<cmp|/routine/cmp>.
Returns C<True> if the first argument is smaller than the second.
=head2 infix C«after»
Expand All @@ -1760,7 +1760,7 @@ Returns C<True> if the first argument is smaller than the second.
multi sub infix:<after>(Str:D, Str:D)
multi sub infix:<after>(Version:D, Version:D)
Generic ordering, uses the same semantics as L<cmp|#infix cmp>.
Generic ordering, uses the same semantics as L<cmp|/routine/cmp>.
Returns C<True> if the first argument is larger than the second.
=head2 infix C«eqv»
Expand Down Expand Up @@ -2586,7 +2586,7 @@ good-things() notandthen 'boo'.say;
=head2 infix C«or»
Same as L<infix C<||>|#infix || >, except with looser precedence.
Same as L<infix C<||>|/routine/||>, except with looser precedence.
Returns the first argument that evaluates to C<True> in boolean context, or
otherwise the last argument, it short-circuits. Please note that C<or> is easy
Expand Down Expand Up @@ -2626,7 +2626,7 @@ and L<Failure> never is:
=head2 infix C«xor»
Same as L<infix C<^^>|#infix ^^>, except with looser precedence.
Same as L<infix C<^^>|/routine/$CIRCUMFLEX_ACCENT$CIRCUMFLEX_ACCENT>, except with looser precedence.
Returns the operand that evaluates to C<True> in boolean context, if and
only if the other operand evaluates to C<False> in boolean context. If
Expand Down

0 comments on commit 4857a9c

Please sign in to comment.