Skip to content

Commit c620570

Browse files
committed
Fix links
1 parent 93889d3 commit c620570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Parameter.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ as it is only used on the parameter.
169169
# OUTPUT: «X::Assignment::RO: Cannot modify an immutable Int␤»
170170
171171
Other parameters may become raw through use of the 'C<is raw>'
172-
L<trait|/type/Signature#Parameter_Traits_and_Modifiers>. These still use
172+
L<trait|/type/Signature#Parameter_traits_and_modifiers>. These still use
173173
their sigil in code.
174174
175175
sub f($x is raw) {
@@ -210,7 +210,7 @@ Defined as:
210210
211211
method rw(Parameter:D: --> Bool:D)
212212
213-
Returns C<True> for L<C<is rw>|/type/Signature#Parameter_Traits_and_Modifiers>
213+
Returns C<True> for L<C<is rw>|/type/Signature#Parameter_traits_and_modifiers>
214214
parameters.
215215
216216
my Signature $sig = :(Str $x is rw, Bool :$is-named);
@@ -223,7 +223,7 @@ Defined as:
223223
224224
method copy(Parameter:D: --> Bool:D)
225225
226-
Returns C<True> for L<C<is copy>|/type/Signature#Parameter_Traits_and_Modifiers>
226+
Returns C<True> for L<C<is copy>|/type/Signature#Parameter_traits_and_modifiers>
227227
parameters.
228228
229229
my Signature $sig = :(Str $x, Bool :$is-named is copy);

0 commit comments

Comments
 (0)