Skip to content

Commit bbfd8ff

Browse files
authored
missing links - Update Hash.rakudoc
3 missing links all different
1 parent 01ce1e8 commit bbfd8ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Hash.rakudoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Hashes can be parameterized with types. You can change the type of the keys like
9090

9191
my %next-prime{Int} = 2 => 3, 3 => 5, 5 => 7, 7 => 11, 11 => 13;
9292

93-
The type of the values defaults to L<Mu>, but you can constrain it to other types:
93+
The type of the values defaults to L<Mu|/type/Mu>, but you can constrain it to other types:
9494

9595
my Array %lists;
9696

@@ -336,7 +336,7 @@ L<named arguments|/type/Capture> and as such won't end up in the C<Hash>:
336336
my %h .= push(e => 6);
337337
say %h.raku; # OUTPUT: «{}␤»
338338

339-
Use the corresponding L<subroutine|/language/independent-routines#sub_push> to
339+
Use the corresponding L<subroutine|/type/independent-routines#sub_push> to
340340
catch this kind of mistake:
341341

342342
push my %h, f => 7;
@@ -400,7 +400,7 @@ is:
400400
Returns the default value of the invocant, i.e. the value which is returned when
401401
a non existing key is used to access an element in the C<Hash>. Unless the
402402
C<Hash> is declared as having a default value by using the
403-
L<is default|/syntax/trait is default> trait the method returns the type object
403+
L<is default|/syntax/is default (Attribute)> trait the method returns the type object
404404
C<(Any)>.
405405

406406
my %h1 = 'apples' => 3, 'oranges' => 7;

0 commit comments

Comments
 (0)