Skip to content

Commit 0bce4d2

Browse files
authored
standardizes the reference to the metamodel #4201 (#4611)
1 parent e381dbe commit 0bce4d2

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

doc/Type/Metamodel/ConcreteRoleHOW.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The main difference with
3232
L<C<ClassHOW.new_type>|/type/Metamodel::ClassHOW#method_new_type> is that you
3333
can mix-in roles in this newly created one.
3434

35-
This class is Rakudo specific, and provided only for completeness. Not really
36-
intended to be used by the final user.
35+
I<Warning>: this class is part of the Rakudo implementation, and is not
36+
a part of the language specification.
3737

3838
=end pod

doc/Type/Metamodel/CurriedRoleHOW.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ a single parameter an instantiated role will also be of the same type:
6262
role Zape[::T] {};
6363
say Zape[Int].HOW; #: «Perl6::Metamodel::CurriedRoleHOW.new␤»
6464

65-
I<Note>: As most of the C<Metamodel> classes, this class is here mainly for
66-
illustration purposes and it's not intended for the final user to instantiate.
65+
I<Note>: As with most of the C<Metamodel> classes, this one is mainly for illustration
66+
purposes and is not intended for the end user to instantiate.
6767

6868
=end pod

doc/Type/Metamodel/ParametricRoleGroupHOW.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ my \zape := Metamodel::ParametricRoleGroupHOW.new_type( name => "zape");
2828
my \zipi := Metamodel::ParametricRoleHOW.new_type( name => "zipi", group => zape);
2929
say zipi.HOW; # OUTPUT: «Perl6::Metamodel::ParametricRoleHOW.new␤»
3030

31-
I<Note>: As most of the C<Metamodel> classes, this class is here mainly for
32-
illustration purposes and it's not intended for the final user to instantiate.
31+
I<Note>: As with most of the C<Metamodel> classes, this one is mainly for illustration
32+
purposes and is not intended for the end user to instantiate.
3333

3434
=end pod

doc/Type/Metamodel/ParametricRoleHOW.rakudoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ say zipi.HOW; # OUTPUT: «Perl6::Metamodel::ParametricRoleHOW.new␤»
3939
The extra C<group> argument will need to be used to integrate it in a parametric
4040
role group, which will need to be defined in advance.
4141

42-
I<Note>: As most of the C<Metamodel> classes, this one is here mainly for
43-
illustration purposes and it's not intended for the final user to instantiate,
44-
unless their intention is really to create a parametric role group.
42+
I<Note>: As with most of the C<Metamodel> classes, this one is mainly for illustration
43+
purposes and is not intended for the end user to instantiate.
4544

4645
=end pod

0 commit comments

Comments
 (0)