Skip to content

Commit 3d14991

Browse files
author
Moray
committed
Replaces more http links with https in 'Language' docs
Finding links that match L<url> and replacing http links with https where appropriate (ie where they work)
1 parent 7674201 commit 3d14991

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc/Language/5to6-nutshell.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ apply.
486486
say $subref->($foo, $bar);
487487
488488
In relatively recent versions of Perl 5 (5.20 and later), a new feature allows
489-
the use of the arrow operator for dereferencing: see L<Postfix Dereferencing|https://search.cpan.org/~shay/perl-5.20.1/pod/perl5200delta.pod#Experimental_Postfix_Dereferencing>.
489+
the use of the arrow operator for dereferencing: see L<Postfix Dereferencing|https://metacpan.org/pod/release/SHAY/perl-5.20.1/pod/perl5200delta.pod#Experimental_Postfix_Dereferencing>.
490490
This can be used to create an array from a scalar. This operation is usually
491491
called I<decont>, as in decontainerization, and in Perl 6 methods such as
492492
C<.list> and C<.hash> are used:
@@ -1254,7 +1254,7 @@ No longer relevant: in Perl 6, source code is expected to be in utf8 encoding.
12541254
12551255
=head3 C<vars>
12561256
1257-
Discouraged in Perl 5. See L<http://perldoc.perl.org/vars.html>.
1257+
Discouraged in Perl 5. See L<https://perldoc.perl.org/vars.html>.
12581258
12591259
You should refactor your Perl 5 code to remove the need for C<use vars>,
12601260
before translating into Perl 6.
@@ -1756,7 +1756,7 @@ This project is a suite of Perl cross-compilers, including Perl 5-to-6
17561756
translation. It has a web front-end, and so can be used without
17571757
installation. It only supports a subset of Perl 5 syntax so far.
17581758
1759-
L<http://fglock.github.io/Perlito/perlito/perlito5.html>
1759+
L<https://fglock.github.io/Perlito/perlito/perlito5.html>
17601760
17611761
=head2 Perl-ToPerl6
17621762

doc/Language/glossary.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ Real Soon Now
578578
=head2 RT
579579
X<|RT>
580580
581-
Request Tracker (L<http://rt.perl.org/>). The place where all the bugs
581+
Request Tracker (L<https://rt.perl.org/>). The place where all the bugs
582582
related to L<#Rakudo> live.
583583
584584
=head2 TIMTOWTDI

doc/Language/haskell-to-p6.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ And in Perl6:
420420
=end code
421421
422422
See this design document for more information on what kinds of list comprehensions are possible
423-
in Perl6: L<http://design.perl6.org/S04.html#The_do-once_loop>.
423+
in Perl6: L<https://design.perl6.org/S04.html#The_do-once_loop>.
424424
425425
As you can see, when you get into some more advanced Haskell list comprehensions, Perl6
426426
does not translate exactly the same, but it's possible to do the same things, nonetheless.

doc/Language/unicode_ascii.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bigger.
1212
1313
Reference is made below to various properties of unicode codepoints.
1414
The definitive list can be found here:
15-
L<http://www.unicode.org/Public/UCD/latest/ucd/PropList.txt>.
15+
L<https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt>.
1616
1717
=head1 Alphabetic characters
1818

0 commit comments

Comments
 (0)