Skip to content

Commit 25aa713

Browse files
author
Jan-Olof Hendig
committed
Fixed a few broken links
1 parent b8efc34 commit 25aa713

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/5to6-perlop.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ L<https://doc.perl6.org/language/operators#Operator_Precedence>.
3535
The things listed in Perl 5's perlop document as unary and list operators in
3636
this section tend to be things that can also be thought of as functions, such
3737
as C<print> and C<chdir>. As such, you can find information about them in
38-
L<5to6-perlfunc.pod>. Parentheses are still used for grouping.
38+
L<5to6-perlfunc.pod|/language/5to6-perlfunc>. Parentheses are still used for grouping.
3939
4040
=head2 The Arrow Operator
4141
@@ -112,7 +112,7 @@ C« << » and C« >> » have been replaced by C<< +< >> and C<< +> >>.
112112
113113
=head2 Named Unary Operators
114114
115-
As noted above, you'll find these in L<5to6-perlfunc.pod>.
115+
As noted above, you'll find these in L<5to6-perlfunc.pod|/language/5to6-perlfunc>.
116116
117117
=head2 Relational Operators
118118
@@ -213,7 +213,7 @@ separator. If you are trying to just literally translate a line of Perl
213213
=head2 List Operators (Rightward)
214214
215215
Like the Named Unary Operators, you'll find these discussed in
216-
L<5to6-perlfunc.pod>.
216+
L<5to6-perlfunc.pod|/language/5to6-perlfunc>.
217217
218218
=head2 Logical Not
219219
@@ -318,7 +318,7 @@ If you want to slurp the entire file into a scalar, you would - surprise! -
318318
use the C<.slurp> method. For instance, C<my $x = "filename".IO.slurp;> or
319319
C<my $fh = open "filename", :r;my $x = $fh.slurp;>.
320320
321-
As noted in L<5to6-perlvar.pod>, the C<ARGV> magic input filehandle has
321+
As noted in L<5to6-perlvar.pod|/language/5to6-perlvar>, the C<ARGV> magic input filehandle has
322322
been replaced by C<$*ARGFILES>, and the C<@ARGV> array of command line
323323
arguments has been replaced by C<@*ARGS>.
324324

0 commit comments

Comments
 (0)