diff --git a/doc/Language/operators.pod6 b/doc/Language/operators.pod6 index 42626502d..9e57efcf4 100644 --- a/doc/Language/operators.pod6 +++ b/doc/Language/operators.pod6 @@ -423,7 +423,7 @@ quickly. 1..3 X~ # 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) will @@ -1750,7 +1750,7 @@ Mnemonic: I multi sub infix:(Str:D, Str:D) multi sub infix:(Version:D, Version:D) -Generic ordering, uses the same semantics as L. +Generic ordering, uses the same semantics as L. Returns C if the first argument is smaller than the second. =head2 infix C«after» @@ -1760,7 +1760,7 @@ Returns C if the first argument is smaller than the second. multi sub infix:(Str:D, Str:D) multi sub infix:(Version:D, Version:D) -Generic ordering, uses the same semantics as L. +Generic ordering, uses the same semantics as L. Returns C if the first argument is larger than the second. =head2 infix C«eqv» @@ -2586,7 +2586,7 @@ good-things() notandthen 'boo'.say; =head2 infix C«or» -Same as L|#infix || >, except with looser precedence. +Same as L|/routine/||>, except with looser precedence. Returns the first argument that evaluates to C in boolean context, or otherwise the last argument, it short-circuits. Please note that C is easy @@ -2626,7 +2626,7 @@ and L never is: =head2 infix C«xor» -Same as L|#infix ^^>, except with looser precedence. +Same as L|/routine/$CIRCUMFLEX_ACCENT$CIRCUMFLEX_ACCENT>, except with looser precedence. Returns the operand that evaluates to C in boolean context, if and only if the other operand evaluates to C in boolean context. If