Skip to content

Commit 38f6ccd

Browse files
committed
Hard links were removed
1 parent 47ba223 commit 38f6ccd

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

doc/Language/5to6-perlfunc.pod

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The remaining filetests in Perl 5 do not appear to be implemented
8787
in Perl 6.
8888
8989
The documentation for this can be found at
90-
L<https://doc.perl6.org/type/IO::Path#File_Test_operators>.
90+
L<File Test operators|/type/IO::Path#File_Test_operators>.
9191
9292
There is more information on reading and writing files at
9393
L<io|/language/io>. Also, the section on C<open()>
@@ -167,7 +167,7 @@ still be useful.
167167
168168
Not in Perl 6. For breaking out of C<given> blocks, you should probably take a
169169
look at C<proceed> and C<succeed>
170-
(L<https://doc.perl6.org/language/control#proceed_and_succeed>).
170+
L<here|/language/control#proceed_and_succeed>.
171171
172172
=head2 caller
173173
@@ -616,7 +616,7 @@ Was never a builtin function in Perl 5 in the first place. In Perl 6,
616616
typically, one declares functions as exportable or not, and all the
617617
exportable ones are exported. Nevertheless, selective importing is
618618
possible, but beyond the scope of this document. For details, see
619-
L<https://doc.perl6.org/language/5to6-nutshell#Importing_specific_functions_from_a_module>.
619+
L<this section|/language/5to6-nutshell#Importing_specific_functions_from_a_module>.
620620
621621
=head2 index
622622
@@ -781,7 +781,7 @@ operator still exists. If you're trying to rewrite some Perl 5 code, the
781781
most important difference is that C<=~> is replaced by the smart match
782782
operator, C<~~>. Similarly, C<!~> is replaced by C<!~~>. Options for
783783
regex operators are adverbs and are complicated. For details, see
784-
L<https://doc.perl6.org/language/regexes#Adverbs>
784+
L<Adverbs|/language/regexes#Adverbs>
785785
786786
=head2 map
787787
@@ -959,7 +959,7 @@ Works in Perl 6, and can also be used as a method. I. e. C<my $x = pop
959959
Not available in Perl 6. The closest equivalent is the C<:c> adverb,
960960
which defaults to C<$/.to> if C<$/> is true, and C<0> if it isn't. For
961961
information on C<:c>, see
962-
L<https://doc.perl6.org/language/regexes#Continue>.
962+
L<Continue|/language/regexes#Continue>.
963963
964964
=head2 print
965965
@@ -1047,7 +1047,7 @@ it an argument. You can, however, use it as a method on a number to get
10471047
that behavior. I. e. the Perl 5 C<rand(100)> is equivalent to
10481048
C<100.rand> in Perl 6. Additionally, you can get a random integer by
10491049
using something like C<(^100).pick>. For I<why> you are able to do that,
1050-
see L<https://doc.perl6.org/language/operators#prefix_%5E> and
1050+
see L<^ operator|/language/operators#prefix_%5E> and
10511051
L<pick|/routine/pick>.
10521052
10531053
=head2 read
@@ -1064,7 +1064,7 @@ documented to exist at this time.
10641064
=item readdir DIRHANDLE
10651065
10661066
Not a builtin function. To iterate through the contents of a directory,
1067-
take a look at L<https://doc.perl6.org/type/IO::Path#routine_dir>.
1067+
take a look at L<dir routine|/type/IO::Path#routine_dir>.
10681068
10691069
=head2 readline
10701070
@@ -1179,7 +1179,7 @@ substitution operator exists. If you're trying to rewrite some
11791179
Perl 5 code, the most important difference is that C<=~> is replaced
11801180
by the smart match operator, C<~~>. Similarly, C<!~> is C<!~~>.
11811181
Options for regex operators are adverbs and are complicated. For
1182-
details, see L<https://doc.perl6.org/language/regexes#Adverbs>
1182+
details, see L<Adverbs page|/language/regexes#Adverbs>
11831183
11841184
=head2 say
11851185

doc/Language/5to6-perlop.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ of #perl6 on irc.freenode.org
2828
The operator precedence table is somewhat different in Perl 6 than it is in
2929
Perl 5, so I will not detail it here. If you need to know the precedence and
3030
associativity of a given operator in Perl 6, refer to
31-
L<https://doc.perl6.org/language/operators#Operator_Precedence>.
31+
L<Operator Precedence|/language/operators#Operator_Precedence>.
3232
3333
=head2 Terms and List Operators
3434
@@ -45,7 +45,7 @@ dereference something, however, the arrow is the dot. It is also the dot
4545
for method calls. So, Perl 5's C<< $arrayref->[7] >> becomes
4646
C<$arrayref.[7]> in Perl 6 and, similarly, C<< $user->name >> becomes
4747
C<$user.name>. The C<< => >> arrow is used for constructing Pairs, see
48-
L<https://doc.perl6.org/language/terms#Pair>.
48+
L<Pair term documentation|/language/terms#Pair>.
4949
5050
=head2 Auto-increment and Auto-decrement
5151
@@ -202,7 +202,7 @@ The comma operator works mostly as expected, but technically it creates
202202
L<Lists|/type/List>) or separates arguments
203203
in function calls. Also, there is a C<:> variant that turns function
204204
calls into method calls - see
205-
L<https://doc.perl6.org/language/operators#infix_%3A>.
205+
L<this page|/language/operators#infix_%3A>.
206206
207207
The C<< => >> operator works similarly to the Perl 5 "fat comma"
208208
behavior in that it allows an unquoted identifier on its left side, but
@@ -257,7 +257,7 @@ manner: C<< %a = 1 => 2, 3 => 4;say "%a[]"; >> results in a space
257257
separating the pairs and tabs separating the key from the value in each
258258
pair (apparently). You can also interpolate Perl 6 code in strings using
259259
curly braces. For all the details, see
260-
L<https://doc.perl6.org/language/quoting#Interpolation%3A_qq>.
260+
L<Interpolation|/language/quoting#Interpolation%3A_qq>.
261261
262262
C<qw> works as in Perl 5, and can also be rendered as C<< <...> >>. E.
263263
g. C<qw/a b c/> is equivalent to C<< <a b c> >>.

doc/Language/5to6-perlsyn.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ until $x>.
9797
9898
The big change from Perl 5 is that C<given> is not experimental or disabled by
9999
default in Perl 6. For the details on C<given> see
100-
L<http://doc.perl6.org/language/control#given>.
100+
L<this page|/language/control#given>.
101101
102102
=head2 Loop Control
103103
@@ -158,8 +158,8 @@ given EXPR {
158158
159159
=end code
160160
161-
The full details can be found at
162-
L<http://doc.perl6.org/language/control#given>.
161+
The full details can be found
162+
L<here|/language/control#given>.
163163
164164
=head2 Goto
165165

doc/Language/5to6-perlvar.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ $^z)>. Ergo:
148148
=end code
149149
150150
For more on placeholder variables, see
151-
L<http://doc.perl6.org/language/variables#The_%5E_Twigil>
151+
L<this page|/language/variables#The_%5E_Twigil>
152152
=item %ENV
153153
154154
%ENV has been replaced by %*ENV in Perl 6. Note that the keys of this hash may
@@ -319,7 +319,7 @@ Does not exist in Perl 6, but you can get the same information using C<$/[*-
319319
320320
If you want to I<understand> why that works, you can look at these documents:
321321
322-
=item L<http://doc.perl6.org/routine/%5B%20%5D#language_documentation_Operators>
322+
=item L<[ ] routine|/routine/%5b%20%5d#language_documentation_operators>
323323
324324
=item L<Whatever|/type/Whatever>
325325

doc/Language/performance.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ L<"critical 3%"|https://en.wikiquote.org/wiki/Donald_Knuth> by "profiling" as ex
1717
Expressions of the form C<now - INIT now>, where C<INIT> is a
1818
L<phase in the running of a Perl 6 program|/language/phasers>, provide a great idiom for timing code snippets.
1919
20-
Use the C<m: your code goes here> L<#perl6 channel evalbot|http://doc.perl6.org/language/glossary#camelia>
20+
Use the C<m: your code goes here> L<#perl6 channel evalbot|/language/glossary#camelia>
2121
to write lines like:
2222
2323
m: say now - INIT now
@@ -28,7 +28,7 @@ because the latter occurs during L<the INIT phase|/language/phasers#INIT>.
2828
2929
=head2 Profile with C<prof-m: your code goes here>
3030
31-
Enter C<prof-m: your code goes here> in the L<#perl6 channel|http://doc.perl6.org/language/glossary#IRC>
31+
Enter C<prof-m: your code goes here> in the L<#perl6 channel|/language/glossary#IRC>
3232
to invoke a Perl 6 compiler with a C<--profile> option.
3333
The evalbot's output includes a link to L<profile info|https://en.wikipedia.org/wiki/Profiling_(computer_programming)>:
3434
@@ -85,8 +85,8 @@ Start by identifying the L<"critical 3%"|https://en.wikiquote.org/wiki/Donald_Kn
8585
=head2 Line by line
8686
8787
A quick, fun, productive way to try improve code line-by-line is to collaborate with
88-
others using the L<#perl6|http://doc.perl6.org/language/glossary#IRC> evalbot
89-
L<camelia|http://doc.perl6.org/language/glossary#camelia>.
88+
others using the L<#perl6|/language/glossary#IRC> evalbot
89+
L<camelia|/glossary#camelia>.
9090
9191
=head2 Routine by routine
9292

0 commit comments

Comments
 (0)