Skip to content

Commit e7b73ea

Browse files
authored
Merge pull request #3076 from tusindfryd/master
Fix broken links
2 parents b839ace + 9ff168d commit e7b73ea

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

β€Ždoc/Language/control.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ is the only thing to do asynchronously.
188188
say $promise.result; # OUTPUT: «42␀»
189189
190190
Note that code executed this way does not have access to the special
191-
variables LΒ«C<$!>|/syntax/$!Β» and LΒ«C<$/>|/syntax/$/Β» of its outer
191+
variables LΒ«C<$!>|/syntax/$!Β» and LΒ«C<$/>|/syntax/$$SOLIDUSΒ» of its outer
192192
block, but receives new ones, so every asynchronous task has its
193193
per-task state.
194194

β€Ždoc/Language/create-cli.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The default command line interface of Raku scripts consists of three parts:
1212
=head2 Parsing the command line parameters into a L<capture|/type/Capture>
1313
1414
This looks at the values in L<@*ARGS|/language/variables#index-entry-@*ARGS>,
15-
interprets these according to some policy, and creates a L<Capture/type/Capture>
15+
interprets these according to some policy, and creates a L<Capture|/type/Capture>
1616
object out of that. An alternative way of parsing may be provided by the developer
1717
or installed using a module.
1818

β€Ždoc/Language/modules.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ which was used to indicate the kind of source control system, generally C<git>,
806806
which can be used to download the module. However, this field is nowadays
807807
ignored by C<zef> and the rest of the tools.>
808808
809-
The L<C<Test::META>> module | https://github.com/jonathanstowe/Test-META/> can
809+
The L<C<Test::META> module | https://github.com/jonathanstowe/Test-META/> can
810810
help
811811
you check the correctness of the META6.json file; this module will check for all
812812
the mandatory fields and that the type used for all of them is correct.

β€Ždoc/Language/operators.pod6

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1889,7 +1889,7 @@ is smaller than or equal to the second.
18891889
18901890
Numeric less than or equal to operator.
18911891
1892-
Equivalent to LΒ«<=|routine/<=Β», at codepoint U+2264 (LESS-THAN OR EQUAL TO).
1892+
Equivalent to LΒ«<=|/routine/<=Β», at codepoint U+2264 (LESS-THAN OR EQUAL TO).
18931893
18941894
=head2 infix CΒ«>Β»
18951895
@@ -2588,7 +2588,7 @@ A comparison:
25882588
say $_ if /A/ ff /C/ for @list; # OUTPUT: «A␀B␀C␀»
25892589
say $_ if /A/ ^ff /C/ for @list; # OUTPUT: «B␀C␀»
25902590
2591-
The sed-like version can be found in L<C<^fff>|/routine/^fff>.
2591+
The sed-like version can be found in L<C<^fff>|/routine/$CIRCUMFLEX_ACCENTfff>.
25922592
25932593
This operator cannot be overloaded, as it's handled specially by the compiler.
25942594
@@ -2603,7 +2603,7 @@ stop condition (including items that first matched the start condition).
26032603
say $_ if /A/ ff /C/ for @list; # OUTPUT: «A␀B␀C␀»
26042604
say $_ if /A/ ff^ /C/ for @list; # OUTPUT: «A␀B␀»
26052605
2606-
The sed-like version can be found in L<fff^|/routine/fff^>.
2606+
The sed-like version can be found in L<fff^|/routine/fff$CIRCUMFLEX_ACCENT>.
26072607
26082608
This operator cannot be overloaded, as it's handled specially by the compiler.
26092609
@@ -2618,7 +2618,7 @@ the stop or start condition (or both).
26182618
say $_ if /A/ ff /C/ for @list; # OUTPUT: «A␀B␀C␀»
26192619
say $_ if /A/ ^ff^ /C/ for @list; # OUTPUT: «B␀»
26202620
2621-
The sed-like version can be found in L<C<^fff^>|/routine/^fff^>.
2621+
The sed-like version can be found in L<C<^fff^>|/routine/$CIRCUMFLEX_ACCENTfff$CIRCUMFLEX_ACCENT>.
26222622
26232623
This operator cannot be overloaded, as it's handled specially by the compiler.
26242624
@@ -2654,7 +2654,7 @@ Like L<fff|/routine/fff>, except it does not return true for matches to the left
26542654
say $_ if /A/ fff /C/ for @list; # OUTPUT: «A␀B␀C␀»
26552655
say $_ if /A/ ^fff /C/ for @list; # OUTPUT: «B␀C␀»
26562656
2657-
For the non-sed version, see L<C<^ff>|/routine/^ff>.
2657+
For the non-sed version, see L<C<^ff>|/routine/$CIRCUMFLEX_ACCENTff>.
26582658
26592659
This operator cannot be overloaded, as it's handled specially by the compiler.
26602660
@@ -2669,7 +2669,7 @@ argument.
26692669
say $_ if /A/ fff /C/ for @list; # OUTPUT: «A␀B␀C␀»
26702670
say $_ if /A/ fff^ /C/ for @list; # OUTPUT: «A␀B␀»
26712671
2672-
For the non-sed version, see L<ff^|/routine/ff^>.
2672+
For the non-sed version, see L<ff^|/routine/ff$CIRCUMFLEX_ACCENT>.
26732673
26742674
This operator cannot be overloaded, as it's handled specially by the compiler.
26752675
@@ -2684,7 +2684,7 @@ right argument.
26842684
say $_ if /A/ fff /C/ for @list; # OUTPUT: «A␀B␀C␀»
26852685
say $_ if /A/ ^fff^ /C/ for @list; # OUTPUT: «B␀»
26862686
2687-
For the non-sed version, see L<C<^ff^>|/routine/^ff^>.
2687+
For the non-sed version, see L<C<^ff^>|/routine/$CIRCUMFLEX_ACCENTff$CIRCUMFLEX_ACCENT>.
26882688
26892689
This operator cannot be overloaded, as it's handled specially by the compiler.
26902690

β€Ždoc/Language/regexes.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ matching a string against a regex, this powerful regex-based text destructuring
269269
tool can't be left out from this overview of common pattern matching methods.
270270
271271
If you feel that your needs exceed what simple regexes have to offer, check out this
272-
L<grammar tutorial>|/language/grammar_tutorial> to take regexes to the next level.
272+
L<grammar tutorial|/language/grammar_tutorial> to take regexes to the next level.
273273
=end item
274274
275275

β€Ždoc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ instead:
155155
156156
=head2 Using set subroutines on C<Associative> when the value is falsy
157157
158-
Using L<(cont)|/routine/(cont) , infix βˆ‹>, L<βˆ‹|/routine/(cont), infix βˆ‹>, L<∌|/routine/∌>,
158+
Using L<(cont)|/routine/(cont) , infix βˆ‹>, L<βˆ‹|/routine/(cont),%20infix%20βˆ‹>, L<∌|/routine/∌>,
159159
L<(elem)|/routine/(elem), infix ∈>, L<∈|/routine/(elem), infix ∈>, or L<βˆ‰|/routine/βˆ‰> on classes
160160
implementing L<Associative|/type/Associative> will return C<False> if the value
161161
of the key is falsy:

β€Ždoc/Type/BagHash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ them signifying how many copies of that element are considered "in the bag".
1212
(For I<immutable> bags, see L<Bag|/type/Bag> instead.)
1313
1414
Objects/values of any type are allowed as bag elements. Within a C<BagHash>,
15-
items that would compare positively with the L<===|/routine/===/> operator are considered the
15+
items that would compare positively with the L<===|/routine/===> operator are considered the
1616
same element, with the number of how many there were as its weight. But of
1717
course you can also easily get back the expanded list of items (without the
1818
order):

β€Ždoc/Type/independent-routines.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ L<run|/routine/run> in non-sink context:
523523
If you want to capture standard output or error instead of having it printed
524524
directly you can use the C<:out> or C<:err> arguments, which will make them
525525
available using their respective methods: L<C<Proc.out>|/type/Proc> and
526-
L<C<Proc.err>|/type/Proc/>.
526+
L<C<Proc.err>|/type/Proc>.
527527
528528
my $proc = run 'echo', 'Raku is Great!', :out, :err;
529529
$proc.out.slurp(:close).say; # OUTPUT: «Raku is Great!␀»

0 commit comments

Comments
Β (0)