File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 ( ) }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments