Skip to content

Commit 54a8abe

Browse files
committed
Eliminates word variants, refs #3024
1 parent 1589642 commit 54a8abe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/Language/traits.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ all objects in Perl 6.
9292
class Thar {};
9393
say Thar.REPR; #OUTPUT: «P6opaque␤»
9494
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
9696
and class unless specified otherwise; for that reason, it is in general not
9797
necessary unless you are effectively working with that interface.
9898

doc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ while $++ > 5 { .say }
333333
=head3 Reduction vs. Array constructor ambiguity
334334
335335
=for code :skip-test<illustrates error>
336-
# WRONG; ambiguity with `[<]` meta op:
336+
# WRONG; ambiguity with `[<]` metaop:
337337
my @a = [[<foo>],];
338338
339339
=begin code

doc/Language/typesystem.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ object is a subclass of L<Any|/type/Any> or L<Mu|/type/Mu>. Introspection
1212
methods are provided via inheritance from those base classes and the
1313
introspection postfix L<.^|/language/operators#postfix_.^>. A new type is
1414
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
1616
type names must be unique in their scope.
1717
1818
=head2 Default types
@@ -818,7 +818,7 @@ creating a List of Pairs.
818818
819819
=head3 Metaclass
820820
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
822822
C<.HOW> against L<Metamodel::EnumHOW|/type/Metamodel::EnumHOW> or simply test
823823
against the C<Enumeration> role.
824824

0 commit comments

Comments
 (0)