Skip to content

Commit e5c6b9e

Browse files
committed
Corrects word variants, refs #3024
1 parent e7942a0 commit e5c6b9e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/Language/operators.pod6

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ then a list quote construct with the symbol(s) that make up the operator:
109109
110110
As a special case, a I<listop> (list operator) can stand either as a
111111
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
113113
L<#prefix ...> etc. stub operators.
114114
115115
@@ -421,7 +421,8 @@ which is equivalent to C«1, 2 X~ <a b>».
421421
X<|[\] (triangular reduction metaoperators)>
422422
By default, only the final result of the reduction is returned. Prefix the
423423
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
425426
C<\> already, quote it with C<[]> (e.g. C<[\[\x]]>).
426427
427428
my @n = [\~] 1..*;
@@ -671,9 +672,9 @@ Technically, not a real operator; it's syntax special-cased in the compiler.
671672
X«|methodop .^»
672673
=head2 methodop C«.^»
673674
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
675676
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.
677678
678679
Technically, not a real operator; it's syntax special-cased in the compiler.
679680

0 commit comments

Comments
 (0)