Skip to content

Commit d4f8d41

Browse files
eksperimentalJosé Valim
authored andcommitted
Use https instead of http when servers are redirecting (#9094)
The servers are automatically redirecting from http:// to https://
1 parent c4468a9 commit d4f8d41

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

NOTICE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.
1212
You may obtain a copy of the License at
1313

14-
http://www.apache.org/licenses/LICENSE-2.0
14+
https://www.apache.org/licenses/LICENSE-2.0
1515

1616
Unless required by applicable law or agreed to in writing, software
1717
distributed under the License is distributed on an "AS IS" BASIS,
@@ -27,7 +27,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
2727
you may not use this file except in compliance with the License.
2828
You may obtain a copy of the License at
2929

30-
http://www.apache.org/licenses/LICENSE-2.0
30+
https://www.apache.org/licenses/LICENSE-2.0
3131

3232
Unless required by applicable law or agreed to in writing, software
3333
distributed under the License is distributed on an "AS IS" BASIS,

lib/elixir/lib/float.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ defmodule Float do
3636
To learn more about floating-point arithmetic visit:
3737
3838
* [0.30000000000000004.com](http://0.30000000000000004.com/)
39-
* [What Every Programmer Should Know About Floating-Point Arithmetic](http://floating-point-gui.de/)
39+
* [What Every Programmer Should Know About Floating-Point Arithmetic](https://floating-point-gui.de/)
4040
4141
"""
4242

@@ -305,7 +305,7 @@ defmodule Float do
305305
num = rounding(rounding, sign, num, div)
306306

307307
# Convert back to float without loss
308-
# http://www.exploringbinary.com/correct-decimal-to-floating-point-using-big-integers/
308+
# https://www.exploringbinary.com/correct-decimal-to-floating-point-using-big-integers/
309309
den = power_of_10(precision)
310310
boundary = den <<< 52
311311

lib/elixir/lib/string.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ defmodule String do
5151
Standard, but do not contain any of the locale specific behaviour.
5252
5353
More information about graphemes can be found in the [Unicode
54-
Standard Annex #29](http://www.unicode.org/reports/tr29/).
54+
Standard Annex #29](https://www.unicode.org/reports/tr29/).
5555
The current Elixir version implements Extended Grapheme Cluster
5656
algorithm.
5757
@@ -1623,7 +1623,7 @@ defmodule String do
16231623
Cluster algorithm.
16241624
16251625
The algorithm is outlined in the [Unicode Standard Annex #29,
1626-
Unicode Text Segmentation](http://www.unicode.org/reports/tr29/).
1626+
Unicode Text Segmentation](https://www.unicode.org/reports/tr29/).
16271627
16281628
For details about code points and graphemes, see the `String` module documentation.
16291629

lib/elixir/lib/version.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule Version do
66
generated after parsing via `Version.parse/1`.
77
88
`Version` parsing and requirements follow
9-
[SemVer 2.0 schema](http://semver.org/).
9+
[SemVer 2.0 schema](https://semver.org/).
1010
1111
## Versions
1212

lib/elixir/pages/Unicode Syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Elixir supports Unicode throughout the language.
44

55
Quoted identifiers, such as strings (`"olá"`) and charlists (`'olá'`), support Unicode since Elixir v1.0. Strings are UTF-8 encoded. Charlists are lists of Unicode code points. In such cases, the contents are kept as written by developers, without any transformation.
66

7-
Elixir also supports Unicode in identifiers since Elixir v1.5, as defined in the [Unicode Annex #31](http://unicode.org/reports/tr31/). The focus of this document is to describe how Elixir implements the requirements outlined in the Unicode Annex. These requirements are referred to as R1, R6 and so on.
7+
Elixir also supports Unicode in identifiers since Elixir v1.5, as defined in the [Unicode Annex #31](https://unicode.org/reports/tr31/). The focus of this document is to describe how Elixir implements the requirements outlined in the Unicode Annex. These requirements are referred to as R1, R6 and so on.
88

99
To check the Unicode version of your current Elixir installation, run `String.Unicode.version()`.
1010

lib/elixir/test/elixir/string_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule StringTest do
1111
assert String.next_codepoint("") == nil
1212
end
1313

14-
# test cases described in http://mortoray.com/2013/11/27/the-string-type-is-broken/
14+
# test cases described in https://mortoray.com/2013/11/27/the-string-type-is-broken/
1515
test "Unicode" do
1616
assert String.reverse("noël") == "lëon"
1717
assert String.slice("noël", 0..2) == "noë"

lib/elixir/unicode/properties.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ end
3030
# General_Category(C) = Nonspacing_Mark (Mn), Enclosing_Mark (Me), Format (Cf),
3131
# Modifier_Letter (Lm), or Modifier_Symbol (Sk).
3232
#
33-
# Word breaks are defined below based on TR29 (http://unicode.org/reports/tr29/).
33+
# Word breaks are defined below based on TR29 (https://unicode.org/reports/tr29/).
3434
# The categories are computed later.
3535
case_ignorable = [
3636
0x0027,

0 commit comments

Comments
 (0)