summaryrefslogtreecommitdiff
path: root/lib/elixir/lib/string.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/elixir/lib/string.ex')
-rw-r--r--lib/elixir/lib/string.ex4
1 files changed, 2 insertions, 2 deletions
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