Skip to content

Commit 23be70e

Browse files
committed
Fix some broken links
part of #4476
1 parent 4e6a315 commit 23be70e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/Language/create-cli.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ called.
5555

5656
The signature of (the candidates of the multi) sub C<MAIN> determines which
5757
candidate will actually be called using the standard
58-
L<multi dispatch|/language/glossary#Multi-Dispatch> semantics.
58+
L<multi dispatch|/language/glossary#Multi-dispatch> semantics.
5959

6060
A simple example:
6161

doc/Language/experimental.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ and is inherited from
2121
L<Perl's pack|http://perldoc.perl.org/functions/pack.html>.
2222
The C<pack> order creates a L<C<Buf>|/type/Buf> by packing data structures in a certain
2323
way given by a I<packing string> with the options shown
24-
L<in the description of C<unpack>|/type/Blob#method_unpack>. You turn it on by
24+
L<in the description of C<unpack>|/type/Blob#routine_unpack>. You turn it on by
2525
inserting this pragma at the beginning of your program:
2626

2727
use experimental :pack;
@@ -45,7 +45,7 @@ Not all of the symbols above are guaranteed to be implemented, and the roadmap
4545
does not include a fixed date for getting out of that stage.
4646

4747
Please see also documentation for L<C<pack>|/type/Blob#sub_pack> and
48-
L<C<unpack>|/type/Blob#method_unpack> in the L<C<Blob>|/type/Blob> page.
48+
L<C<unpack>|/type/Blob#routine_unpack> in the L<C<Blob>|/type/Blob> page.
4949

5050
=head2 X<B<macros>|Language,macros>
5151

doc/Language/glossary.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ Short for "problem". As in "that's not the pb".
519519

520520
=head2 X<PR|Reference,PR>
521521

522-
See L<Pull Request|#Pull Request>.
522+
See L<Pull request|#Pull request>.
523523

524524
=head2 X<P5|Reference,P5>
525525

@@ -982,7 +982,7 @@ the symbol table.
982982
The current human-readable description of the Raku language. Still in
983983
development. Much more a community effort than the
984984
L<Apocalypses|#Apocalypse> and L<Exegeses|#Exegesis> were. The current
985-
state of the language is reflected by L<roast|#roast>, its L<test suite|#test suite>, not
985+
state of the language is reflected by L<roast|#roast>, its L<test suite|#Test suite>, not
986986
the synopses where speculative material is not always so flagged or more
987987
recent additions have not been documented. This is even more true of
988988
material that has not been yet implemented.

doc/Language/io-guide.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ it's best to ensure all the handles get closed right away. So, you should
200200
always ensure the L<C<Seq>|/type/Seq> from L<C<IO::Path>|/type/IO::Path>'s
201201
L«C<.words>|/type/IO::Path#method_words» and
202202
L«C<.lines>|/type/IO::Path#method_lines» methods is
203-
L<fully reified|/language/glossary#index-entry-Reify>; and the limit argument
203+
L<fully reified|/language/glossary#Reify>; and the limit argument
204204
is there to help you with that.
205205

206206
=head4 Using IO::Handle

doc/Language/list.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ memory:
405405
});
406406
say @divisors; # OUTPUT: «[2 5 7]␤»
407407

408-
The L<C<gather> statement|/language/control#index-entry-lazy_list_gather>
408+
The L<C<gather> statement|/language/control#gather/take>
409409
creates a lazy list, which is eagerly evaluated when assigned to C<@divisors>.
410410

411411
=head2 Flattening "context"

0 commit comments

Comments
 (0)