File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ another class.
169
169
170
170
Attributes are variables that exist per instance of a class; when instantiated
171
171
to a value, the association between the variable and its value is called a
172
- X<property|Property>. They are where the state of an object is stored. In Raku, all
172
+ X<property|Language, Property>. They are where the state of an object is stored. In Raku, all
173
173
attributes are I<private>, which means they can be accessed directly only by
174
174
the class instance itself. They are typically declared using the C<has>
175
175
declarator and the C<!> twigil.
@@ -1070,7 +1070,7 @@ classes are meant for managing objects and roles are meant for managing behavior
1070
1070
and code reuse within objects.
1071
1071
1072
1072
X<|Syntax,does>
1073
- Roles use the keyword X<C<role>|role declaration> preceding the name of the role that is
1073
+ Roles use the keyword X<C<role>|Syntax, role declaration> preceding the name of the role that is
1074
1074
declared. Roles are mixed in using the C<does> keyword preceding the name of
1075
1075
the role that is mixed in.
1076
1076
You can’t perform that action at this time.
0 commit comments