Skip to content

Commit 1ab1197

Browse files
committed
Link more erlang modules in docs
1 parent c246400 commit 1ab1197

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/elixir/lib/json.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ defmodule JSON do
356356
* for `string`: `&Function.identity/1`
357357
* for `null`: the atom `nil`
358358
359-
For streaming decoding, see Erlang's `:json` module.
359+
For streaming decoding, see Erlang's [`:json`](`:json`) module.
360360
"""
361361
@spec decode(binary(), term(), keyword()) ::
362362
{term(), term(), binary()} | {:error, decode_error_reason()}

lib/elixir/lib/kernel.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ defmodule Kernel do
6060
6161
* Bitstring - a sequence of bits, created with `<<>>/1`.
6262
When the number of bits is divisible by 8, they are called binaries and can
63-
be manipulated with Erlang's `:binary` module
63+
be manipulated with Erlang's [`:binary`](`:binary`) module
6464
* Reference - a unique value in the runtime system, created with `make_ref/0`
6565
6666
### Data types
@@ -5722,7 +5722,7 @@ defmodule Kernel do
57225722
>
57235723
> * If using `defoverridable`, avoid relying on `super` to trigger the default
57245724
> behaviour, suggesting users to invoke well-defined APIs instead.
5725-
>
5725+
>
57265726
"""
57275727
defmacro defoverridable(keywords_or_behaviour) do
57285728
quote do

lib/elixir/lib/string.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ defmodule String do
172172
Standard Annex #29](https://www.unicode.org/reports/tr29/).
173173
174174
For converting a binary to a different encoding and for Unicode
175-
normalization mechanisms, see Erlang's `:unicode` module.
175+
normalization mechanisms, see Erlang's [`:unicode`](`:unicode`) module.
176176
177177
## String and binary operations
178178

lib/ex_unit/lib/ex_unit.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ defmodule ExUnit do
321321
322322
* `:seed` - an integer seed value to randomize the test suite. This seed
323323
is also mixed with the test module and name to create a new unique seed
324-
on every test, which is automatically fed into the `:rand` module. This
325-
provides randomness between tests, but predictable and reproducible
324+
on every test, which is automatically fed into the [`:rand`](`:rand`) module.
325+
This provides randomness between tests, but predictable and reproducible
326326
results. A `:seed` of `0` will disable randomization and the tests in each
327327
file will always run in the order that they were defined in;
328328

0 commit comments

Comments
 (0)