@@ -109,7 +109,7 @@ then a list quote construct with the symbol(s) that make up the operator:
109
109
110
110
As a special case, a I < listop > (list operator) can stand either as a
111
111
term or as a prefix. Subroutine calls are the most common listops. Other
112
- cases include meta-reduced infix operators (C < [+] 1, 2, 3 > ) and the
112
+ cases include metareduced infix operators (C < [+] 1, 2, 3 > ) and the
113
113
L < #prefix ... > etc. stub operators.
114
114
115
115
@@ -421,7 +421,8 @@ which is equivalent to C«1, 2 X~ <a b>».
421
421
X < |[\] (triangular reduction metaoperators) >
422
422
By default, only the final result of the reduction is returned. Prefix the
423
423
wrapped operator with a C < \ > , to return a lazy list of all intermediate values
424
- instead. This is called a "triangular reduce". If the non-meta part contains a
424
+ instead. This is called a "triangular reduce". If the I < non-meta > part
425
+ contains a
425
426
C < \ > already, quote it with C < [] > (e.g. C < [\[\x]] > ).
426
427
427
428
my @n = [\~] 1..*;
@@ -671,9 +672,9 @@ Technically, not a real operator; it's syntax special-cased in the compiler.
671
672
X « |methodop .^ »
672
673
= head2 methodop C « .^ »
673
674
674
- A X < meta-method call> . C < $invocant.^method > calls C < method > on C < $invocant > 's
675
+ A X < metamethod call> . C < $invocant.^method > calls C < method > on C < $invocant > 's
675
676
metaclass. It desugars to C < $invocant.HOW.method($invocant, ...) > . See
676
- L < the meta-object protocol documentation|/language/mop > for more information.
677
+ L < the metaobject protocol documentation|/language/mop > for more information.
677
678
678
679
Technically, not a real operator; it's syntax special-cased in the compiler.
679
680
0 commit comments