Skip to content

Commit bfc907a

Browse files
committed
Fix links to independent-routines
1 parent a208eb4 commit bfc907a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

doc/Type/Any.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ by default the L<C<===>|/routine/===> operator is used:
851851
852852
("1", 1, "1 ", 2).unique( as => Int, with => &[==] ).say; #OUTPUT: «(1 2)␤»
853853
854-
Please see L<C<unique>|/type/independent-routines#routine_unique> for
854+
Please see L<C<unique>|/language/independent-routines#routine_unique> for
855855
additional examples that use its sub form.
856856
857857
=head2 method repeated
@@ -872,7 +872,7 @@ as a normalizing function and C<:with> as equality function.
872872
873873
It returns the last repeated element before normalization, as shown in the
874874
example above. See
875-
L<C<repeated>|/type/independent-routines#routine_repeated> for more
875+
L<C<repeated>|/language/independent-routines#routine_repeated> for more
876876
examples that use its sub form.
877877
878878
=head2 method squish
@@ -893,7 +893,7 @@ argument or C<===> by default.
893893
(3+2i,3+3i,4+0i).squish( as => *.re, with => &[==]).put; #OUTPUT: «3+2i 4+0i␤»
894894
895895
As shown in the last example, a sequence can contain a single element. See
896-
L<C<squish>|/type/independent-routines#routine_squish> for additional C<sub>
896+
L<C<squish>|/language/independent-routines#routine_squish> for additional C<sub>
897897
examples.
898898
899899
=head2 method permutations

doc/Type/Cool.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Defined as:
149149
=for code :method
150150
method EVAL(*%_)
151151
152-
It calls the L<subroutine form|/type/independent-routines#sub_mkdir> with the
152+
It calls the L<subroutine form|/language/independent-routines#routine_EVAL> with the
153153
invocant as the first argument, C<$code>, passing along named args, if any.
154154
155155

doc/Type/Proc.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ and environment.
181181
182182
Runs the C<Proc> object with the given command and environment which are
183183
passed through to the shell for parsing and execution. See
184-
L<C<shell>|/type/independent-routines#sub_shell> for an explanation of which shells
184+
L<C<shell>|/language/independent-routines#sub_shell> for an explanation of which shells
185185
are used by default in the most common operating systems.
186186
187187
=head2 method command

doc/Type/independent-routines.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ is not guaranteed.
288288
print [1, 2, 3]; # OUTPUT: «1 2 3»
289289
290290
To print text and include the trailing newline, use
291-
L«C<put>|/type/independent-routines#sub_put».
291+
L«C<put>|/language/independent-routines#sub_put».
292292
293293
=head2 sub put
294294
@@ -297,7 +297,7 @@ Defined as:
297297
multi sub put(**@args --> True)
298298
multi sub put(Junction:D --> True)
299299
300-
Same as L«C<print>|/type/independent-routines#sub_print», except it uses
300+
Same as L«C<print>|/language/independent-routines#sub_print», except it uses
301301
L«C<print-nl>|/routine/print-nl» (which prints a L<newline|/language/newline>,
302302
by default) at the end. L<Junction|/type/Junction> arguments
303303
L<autothread|/language/glossary#index-entry-Autothreading> and the order of
@@ -313,14 +313,14 @@ Defined as:
313313
314314
multi sub say(**@args --> True)
315315
316-
Prints the "gist" of given objects. Same as L«C<put>|/type/independent-routines#sub_put»,
316+
Prints the "gist" of given objects. Same as L«C<put>|/language/independent-routines#sub_put»,
317317
except uses L«C<.gist>|/routine/gist» method to obtain string
318318
representation of the object.
319319
320320
B<NOTE:> the L«C<.gist>|/routine/gist» method of some objects, such as
321321
L<Lists|/type/List#method_gist>, returns only B<partial> information
322322
about the object (hence the "gist"). If you mean to print textual
323-
information, you most likely want to use L«C<put>|/type/independent-routines#sub_put»
323+
information, you most likely want to use L«C<put>|/language/independent-routines#sub_put»
324324
instead.
325325
326326
say Range; # OUTPUT: «(Range)␤»

0 commit comments

Comments
 (0)