Skip to content

Commit 1e7834b

Browse files
committed
Fixes word-variants refs #3024
1 parent 119f512 commit 1e7834b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Metamodel/ClassHOW.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
does Metamodel::Finalization
3030
{ }
3131
32-
C<Metamodel::ClassHOW> is the meta class behind the C<class> keyword.
32+
C<Metamodel::ClassHOW> is the metaclass behind the C<class> keyword.
3333
3434
say so Int.HOW ~~ Metamodel::ClassHOW; # OUTPUT: «True␤»
3535
say Int.^methods(:all).pick.name; # OUTPUT: «random Int method name␤»
@@ -58,7 +58,7 @@ If C<$condition> returns a false value, the
5858
next fallback (if any) is tried, and if none matches, an exception
5959
L<of type X::Method::NotFound|/type/X::Method::NotFound> is thrown.
6060
61-
User-facing code (that is, code not dabbling with meta classes) should use
61+
User-facing code (that is, code not dabbling with metaclasses) should use
6262
method C<FALLBACK> instead.
6363
6464
=head2 method can
@@ -105,7 +105,7 @@ not provide a full list of all candidates.
105105
106106
method compose(Metamodel::ClassHOW:D: $obj)
107107
108-
A call to C<compose> brings the meta object and thus the class it represents
108+
A call to C<compose> brings the metaobject and thus the class it represents
109109
into a fully functional state, so if you construct or modify a class, you must
110110
call the compose method before working with the class.
111111

0 commit comments

Comments
 (0)