File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ The main difference with
32
32
L<C<ClassHOW.new_type>|/type/Metamodel::ClassHOW#method_new_type> is that you
33
33
can mix-in roles in this newly created one.
34
34
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 .
37
37
38
38
=end pod
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ a single parameter an instantiated role will also be of the same type:
62
62
role Zape[::T] {};
63
63
say Zape[Int].HOW; #: «Perl6::Metamodel::CurriedRoleHOW.new»
64
64
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.
67
67
68
68
=end pod
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ my \zape := Metamodel::ParametricRoleGroupHOW.new_type( name => "zape");
28
28
my \zipi := Metamodel::ParametricRoleHOW.new_type( name => "zipi", group => zape);
29
29
say zipi.HOW; # OUTPUT: «Perl6::Metamodel::ParametricRoleHOW.new»
30
30
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.
33
33
34
34
=end pod
Original file line number Diff line number Diff line change @@ -39,8 +39,7 @@ say zipi.HOW; # OUTPUT: «Perl6::Metamodel::ParametricRoleHOW.new»
39
39
The extra C<group> argument will need to be used to integrate it in a parametric
40
40
role group, which will need to be defined in advance.
41
41
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.
45
44
46
45
=end pod
You can’t perform that action at this time.
0 commit comments