File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ all objects in Perl 6.
92
92
class Thar {};
93
93
say Thar.REPR; #OUTPUT: «P6opaque»
94
94
95
- The L < meta object protocol|/language/mop> uses it by default for every object
95
+ The L < metaobject protocol|/language/mop> uses it by default for every object
96
96
and class unless specified otherwise; for that reason, it is in general not
97
97
necessary unless you are effectively working with that interface.
98
98
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ while $++ > 5 { .say }
333
333
= head3 Reduction vs. Array constructor ambiguity
334
334
335
335
= for code :skip-test<illustrates error>
336
- # WRONG; ambiguity with `[<]` meta op :
336
+ # WRONG; ambiguity with `[<]` metaop :
337
337
my @a = [[<foo>],];
338
338
339
339
= begin code
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ object is a subclass of L<Any|/type/Any> or L<Mu|/type/Mu>. Introspection
12
12
methods are provided via inheritance from those base classes and the
13
13
introspection postfix L < .^|/language/operators#postfix_.^ > . A new type is
14
14
introduced to the current scope by one of the following type declarators at
15
- compile time or with the L < meta object protocol|/language/mop> at runtime. All
15
+ compile time or with the L < metaobject protocol|/language/mop> at runtime. All
16
16
type names must be unique in their scope.
17
17
18
18
= head2 Default types
@@ -818,7 +818,7 @@ creating a List of Pairs.
818
818
819
819
= head3 Metaclass
820
820
821
- To test if a given type object is an C < enum > , test the meta object method
821
+ To test if a given type object is an C < enum > , test the metaobject method
822
822
C < .HOW > against L < Metamodel::EnumHOW|/type/Metamodel::EnumHOW > or simply test
823
823
against the C < Enumeration > role.
824
824
You can’t perform that action at this time.
0 commit comments