summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/elixir/lib/list.ex2
-rw-r--r--lib/elixir/lib/module.ex2
-rw-r--r--lib/elixir/lib/node.ex2
-rw-r--r--lib/elixir/lib/string.ex4
-rw-r--r--man/mix.14
5 files changed, 7 insertions, 7 deletions
diff --git a/lib/elixir/lib/list.ex b/lib/elixir/lib/list.ex
index faef55568..0c4d57ac9 100644
--- a/lib/elixir/lib/list.ex
+++ b/lib/elixir/lib/list.ex
@@ -579,7 +579,7 @@ defmodule List do
Notice that this function expects a list of integers representing
UTF-8 codepoints. If you have a list of bytes, you must instead use
- [the `:binary` module](http://erlang.org/doc/man/binary.html).
+ [the `:binary` module](http://www.erlang.org/doc/man/binary.html).
## Examples
diff --git a/lib/elixir/lib/module.ex b/lib/elixir/lib/module.ex
index d0efdf8b9..9585c6e27 100644
--- a/lib/elixir/lib/module.ex
+++ b/lib/elixir/lib/module.ex
@@ -325,7 +325,7 @@ defmodule Module do
In addition to the above, you may also pass to `__info__/1` any atom supported
by Erlang's `module_info` function which also gets defined for each compiled
- module. See http://erlang.org/doc/reference_manual/modules.html#id75777 for
+ module. See http://www.erlang.org/doc/reference_manual/modules.html#id75777 for
more information.
"""
def __info__(kind)
diff --git a/lib/elixir/lib/node.ex b/lib/elixir/lib/node.ex
index aa2c4cdbe..f117f5c46 100644
--- a/lib/elixir/lib/node.ex
+++ b/lib/elixir/lib/node.ex
@@ -141,7 +141,7 @@ defmodule Node do
Returns `true` if successful, `false` if not, and the atom
`:ignored` if the local node is not alive.
- See http://erlang.org/doc/man/net_kernel.html#connect_node-1 for more info.
+ See http://www.erlang.org/doc/man/net_kernel.html#connect_node-1 for more info.
"""
@spec connect(t) :: boolean | :ignored
def connect(node) do
diff --git a/lib/elixir/lib/string.ex b/lib/elixir/lib/string.ex
index b2b3598e1..7a269d016 100644
--- a/lib/elixir/lib/string.ex
+++ b/lib/elixir/lib/string.ex
@@ -67,7 +67,7 @@ defmodule String do
* `Kernel.bit_size/1` and `Kernel.byte_size/1` - size related functions
* `Kernel.is_bitstring/1` and `Kernel.is_binary/1` - type checking function
* Plus a number of functions for working with binaries (bytes)
- [in the `:binary` module](http://erlang.org/doc/man/binary.html)
+ [in the `:binary` module](http://www.erlang.org/doc/man/binary.html)
There are many situations where using the `String` module can
be avoided in favor of binary functions or pattern matching.
@@ -1388,7 +1388,7 @@ defmodule String do
strings.
In case you need to work with bytes, take a look at the
- [`:binary` module](http://erlang.org/doc/man/binary.html).
+ [`:binary` module](http://www.erlang.org/doc/man/binary.html).
## Examples
diff --git a/man/mix.1 b/man/mix.1
index 98ec1d2c5..9a4849a5c 100644
--- a/man/mix.1
+++ b/man/mix.1
@@ -127,8 +127,8 @@ Allows locking down the project dependencies with a proper version range before
.El
.Sh REFERENCES
.Bl -tag -width Ds
-.It [1] http://erlang.org/doc/man/code.html#id103620
-.It [2] http://erlang.org/doc/design_principles/applications.html
+.It [1] http://www.erlang.org/doc/man/code.html#id103620
+.It [2] http://www.erlang.org/doc/design_principles/applications.html
.El
.Sh SEE ALSO
.Xr elixir 1 ,