Skip to content

Commit 2ef149c

Browse files
committed
Fixes non working anchors in the Types files
Headers were changed to senetence case and broke some links. This fixes the links so they point to the changed anchors
1 parent e969ef3 commit 2ef149c

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

doc/Type/Bag.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ say $a ⊖ $b; # OUTPUT: «bag(3(2), 2)␤»
9191
say $a ⊎ $b; # OUTPUT: «bag(2(3), 4(2), 3(2))␤»
9292
=end code
9393
94-
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_Operators> for a complete list of set and bag operators
94+
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_operators> for a complete list of set and bag operators
9595
with detailed explanations.
9696
9797
=head1 Subroutines

doc/Type/BagHash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ say $a ⊖ $b; # OUTPUT: «bag(3(2), 2)␤»
9696
say $a ⊎ $b; # OUTPUT: «bag(2(3), 4(2), 3(2))␤»
9797
=end code
9898
99-
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_Operators> for a complete list of
99+
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_operators> for a complete list of
100100
set and bag operators with detailed explanations.
101101
102102
=head1 Note on C<reverse> and ordering.

doc/Type/Code.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Defined as:
117117
118118
method of(Code:D: --> Mu)
119119
120-
Returns the L<return type constraint|/type/Signature#Constraining_Return_Types>
120+
Returns the L<return type constraint|/type/Signature#Constraining_return_types>
121121
of the C<Code>:
122122
123123
say -> () --> Int {}.of; # OUTPUT: «(Int)␤»

doc/Type/Mix.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ the (cumulative) values become the associated numeric weights:
6565
TODO: Expand this section (using the corresponding section in lib/Type/Bag.pod
6666
as a guide) after ab5tract's set/bag/mix operator redesign.
6767
68-
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_Operators> for a complete list of set and bag operators
68+
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_operators> for a complete list of set and bag operators
6969
with detailed explanations.
7070
7171
=head2 sub mix

doc/Type/MixHash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ lib/Type/BagHash.pod as a guide) after ab5tract's set/bag/mix operator redesign.
7575
7676
=end comment
7777
78-
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_Operators> for a complete list of set and bag operators
78+
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_operators> for a complete list of set and bag operators
7979
with detailed explanations.
8080
8181
=head1 Methods

doc/Type/Mu.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -487,16 +487,16 @@ Marks a type as being exported, that is, available to external users.
487487
A user of a module or class automatically gets all the symbols imported that
488488
are marked as C<is export>.
489489
490-
See L<Exporting and Selective Importing Modules|/language/modules#Exporting_and_Selective_Importing>
490+
See L<Exporting and Selective Importing Modules|/language/modules#Exporting_and_selective_importing>
491491
for more details.
492492
=head2 method return
493493
494494
method return()
495495
496496
The method C<return> will stop execution of a subroutine or method, run all
497-
relevant L<phasers|/language/phasers#Block_Phasers> and provide invocant as a
497+
relevant L<phasers|/language/phasers#Block_phasers> and provide invocant as a
498498
return value to the caller. If a return
499-
L<type constraint|/type/Signature#Constraining_Return_Types> is provided it will be
499+
L<type constraint|/type/Signature#Constraining_return_types> is provided it will be
500500
checked unless the return value is C<Nil>. A control exception is raised and
501501
can be caught with L<CONTROL|/language/phasers#CONTROL>.
502502

doc/Type/Parameter.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Defined as:
232232
method invocant(Parameter:D: --> Bool:D)
233233
234234
Returns C<True> if the parameter is the
235-
L<invocant parameter|/type/Signature#Parameter_Separators>.
235+
L<invocant parameter|/type/Signature#Parameter_separators>.
236236
237237
=head2 method default
238238
@@ -267,7 +267,7 @@ c(4, 5, "six"); # Fails when assigning to $zz, wants Int not Str
267267
c("four", 5, "six"); # Fails when binding $y, wants Str, not Int
268268
269269
Type captures may be used at the same time as
270-
L<type constraints|/type/Signature#Type_Constraints>.
270+
L<type constraints|/type/Signature#Type_constraints>.
271271
272272
=for code
273273
sub d(::T Numeric $x, T $y) {};

doc/Type/Routine.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ say double 21; # 42
276276
From inside another file you'd say C<use Foo;> to load a module and import the
277277
exported functions.
278278
279-
See L<Exporting and Selective Importing Modules|/language/modules#Exporting_and_Selective_Importing>
279+
See L<Exporting and Selective Importing Modules|/language/modules#Exporting_and_selective_importing>
280280
for more details.
281281
282282
=head2 trait is DEPRECATED

doc/Type/Set.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ say $a ∩ $b; # OUTPUT: «set(2)␤»
7575
say $a ⊖ $b; # OUTPUT: «set(1, 3, 4)␤»
7676
=end code
7777
78-
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_Operators> for a complete
78+
See L<Set/Bag Operators|/language/setbagmix#Set/Bag_operators> for a complete
7979
list of set operators with detailed explanations.
8080
8181
=head1 Subroutines

doc/Type/Signature.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ is not available inside the called function.
540540
541541
Slurpy parameters have special behaviors when combined with some
542542
L<traits and modifiers|#Parameter_Traits_and_Modifiers>,
543-
as described in L<the section on slurpy array parameters|/type/Signature#Types_of_Slurpy_Array_Parameters>.
543+
as described in L<the section on slurpy array parameters|/type/Signature#Types_of_slurpy_array_parameters>.
544544
545545
=head2 Types of slurpy array parameters
546546
@@ -616,7 +616,7 @@ c(1, [1, 2], ([3, 4], 5)); # OUTPUT: «[1, [1, 2], ([3, 4], 5)]␤»
616616
c(($_ for 1, 2, 3)); # OUTPUT: «[1, 2, 3]␤»
617617
=end code
618618
619-
For additional discussion and examples, see L<Slurpy Conventions for Functions|/language/functions#Slurpy_Conventions>.
619+
For additional discussion and examples, see L<Slurpy Conventions for Functions|/language/functions#Slurpy_conventions>.
620620
621621
X<|Type capture>
622622
=head2 Type captures

0 commit comments

Comments
 (0)