Skip to content

Commit f361998

Browse files
author
Moray
committed
Makes http links https if applicable in 'Types' documents
1 parent 0c3a991 commit f361998

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

doc/Type/Cool.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ order to see how it is going to behave:
733733
say ‘👨‍👩‍👧‍👦🏿’.uniprops(‘Grapheme_Cluster_Break’); # OUTPUT: «(E_Base_GAZ ZWJ E_Base_GAZ ZWJ E_Base_GAZ ZWJ E_Base_GAZ E_Modifier)␤»
734734
735735
You can read more about graphemes in the
736-
L<Unicode Standard|http://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries>,
736+
L<Unicode Standard|https://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries>,
737737
which Perl 6 tightly follows, using a method called L<NFG, normal form graphemes|/language/glossary#NFG> for efficiently representing them.
738738
739739
=head2 routine codes

doc/Type/IO.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ quote variables:
378378
379379
Note that C<--> is required for many programs to disambiguate between
380380
command-line arguments and
381-
L<filenames that begin with hyphens|http://mywiki.wooledge.org/BashPitfalls#Filenames_with_leading_dashes>.
381+
L<filenames that begin with hyphens|https://mywiki.wooledge.org/BashPitfalls#Filenames_with_leading_dashes>.
382382
383383
A sunk L<Proc> object for a process that L<exited|/routine/exitcode>
384384
unsuccessfully will throw. If you wish to ignore such failures, simply

doc/Type/Int.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ this code that implements it:
135135
say @pieces; # OUTPUT: «[5 4 3 2]␤»
136136
137137
For a more detailed discussion, see
138-
L<this blog post|http://perl6.party/post/Perl6-.polymod-break-up-a-number-into-denominations>
138+
L<this blog post|https://perl6.party/post/Perl6-.polymod-break-up-a-number-into-denominations>
139139
140140
=head2 routine is-prime
141141

doc/Type/Junction.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ On the other hand, the version of "~" that uses strings as a prefix or postfix w
250250
251251
=head1 See Also
252252
253-
=item L<http://perlgeek.de/blog-en/perl-5-to-6/08-junctions.html>
253+
=item L<https://perlgeek.de/blog-en/perl-5-to-6/08-junctions.html>
254254
=item L<http://perl6maven.com/perl6-is-a-value-in-a-given-list-of-values>
255255
=item L<https://perl6advent.wordpress.com/2009/12/13/day-13-junctions/>
256256

doc/Type/List.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ Combining multiple cycles and C<:partial> also works:
10931093
say ('a'..'h').rotor(1 => 1, 3 => -1, :partial).join('|');
10941094
# OUTPUT: «a|c d e|e|g h␤»
10951095
1096-
See L<this blog post for more elaboration on rotor|http://perl6.party/post/Perl-6-.rotor-The-King-of-List-Manipulation>.
1096+
See L<this blog post for more elaboration on rotor|https://perl6.party/post/Perl-6-.rotor-The-King-of-List-Manipulation>.
10971097
10981098
=head2 method batch
10991099

doc/Type/NFC.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
A Codepoint string in Unicode Normalization Form C. It is created by Canonical Decomposition,
1010
followed by Canonical Composition. For more information on what this means, see
11-
L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
11+
L<Unicode TR15|https://www.unicode.org/reports/tr15/>.
1212
1313
=end pod
1414

doc/Type/NFD.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class NFD is Uni {}
88
9-
A Codepoint string in the "D" L<Unicode Normalization Form|http://www.unicode.org/reports/tr15/>
9+
A Codepoint string in the "D" L<Unicode Normalization Form|https://www.unicode.org/reports/tr15/>
1010
1111
=end pod
1212

doc/Type/NFKC.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
A Codepoint string in Unicode Normalization Form KC. It is created by Compatibility Decomposition,
1010
followed by Canonical Composition. For more information on what this means, see
11-
L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
11+
L<Unicode TR15|https://www.unicode.org/reports/tr15/>.
1212
=end pod
1313

1414
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

doc/Type/NFKD.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class NFKD is Uni {}
88
99
A Codepoint string in Unicode Normalization Form KD. It is created by Compatibility Decomposition.
10-
For more information on what this means, see L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
10+
For more information on what this means, see L<Unicode TR15|https://www.unicode.org/reports/tr15/>.
1111
1212
=end pod
1313

doc/Type/Uni.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ characters are separate elements of a C<Uni> instance.
1313
C<Uni> presents itself with a list-like interface of integer Codepoints.
1414
1515
Typical usage of C<Uni> is through one of its subclasses, C<NFC>, C<NFD>,
16-
C<NFKD> and C<NFKC>, which represent strings in one of the L<Unicode Normalization Forms|http://www.unicode.org/reports/tr15/> of the same name.
16+
C<NFKD> and C<NFKC>, which represent strings in one of the L<Unicode Normalization Forms|https://www.unicode.org/reports/tr15/> of the same name.
1717
1818
=head1 Methods
1919

0 commit comments

Comments
 (0)