Skip to content

Commit 7b1b189

Browse files
committed
fix broken links
1 parent ceebae4 commit 7b1b189

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Type/Iterable.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The order of elements is preserved.
8484
say ([1..100].hyper.map({ $_ +1 }).list);
8585
8686
Use C<hyper> in situations where it is OK to do the processing of items in parallel, and
87-
the output order should be kept relative to the input order. See L<race|routine/race> for situations
87+
the output order should be kept relative to the input order. See L«C<race>|/routine/race» for situations
8888
where items are processed in parallel and the output order does not matter.
8989
9090
=head3 Options degree and batch
@@ -121,15 +121,15 @@ Defined as:
121121
Returns another Iterable that is potentially iterated in parallel, with a
122122
given batch size and degree of parallelism (number of parallel workers).
123123
124-
Unlike C<hyper>, C<race> does not preserve the order of elements.
124+
Unlike L«C<hyper>|/routine/hyper», C<race> does not preserve the order of elements.
125125
126126
say ([1..100].race.map({ $_ +1 }).list);
127127
128-
Use race in situations where it is OK to do the processing of items in parallel, and the output order does not matter. See L<hyper|routine/hyper> for situations where you want items processed in parallel and the output order should be kept relative to the input order.
128+
Use race in situations where it is OK to do the processing of items in parallel, and the output order does not matter. See L«C<hyper>|/routine/hyper» for situations where you want items processed in parallel and the output order should be kept relative to the input order.
129129
130130
B«L<Blog post on the semantics of hyper and race|https://6guts.wordpress.com/2017/03/16/considering-hyperrace-semantics/>»
131131
132-
See C<hyper> for an explanation of :$batch and :$degree.
132+
See L«C<hyper>|/routine/hyper» for an explanation of :$batch and :$degree.
133133
134134
=end pod
135135

0 commit comments

Comments
 (0)