@@ -23,20 +23,20 @@ defmodule Module do
23
23
### `@after_compile`
24
24
25
25
A hook that will be invoked right after the current module is compiled.
26
- Accepts a module or a `{module, function_name}`. See the "Compile callbacks"
26
+ Accepts a module or a `{module, function_name}`. See the [ "Compile callbacks"](#module-compile-callbacks)
27
27
section below.
28
28
29
29
### `@after_verify` (since v1.14.0)
30
30
31
31
A hook that will be invoked right after the current module is verified for
32
32
undefined functions, deprecations, etc. Accepts a module or a `{module, function_name}`.
33
- See the "Compile callbacks" section below.
33
+ See the [ "Compile callbacks"](#module-compile-callbacks) section below.
34
34
35
35
### `@before_compile`
36
36
37
37
A hook that will be invoked before the module is compiled.
38
38
Accepts a module or a `{module, function_or_macro_name}` tuple.
39
- See the "Compile callbacks" section below.
39
+ See the [ "Compile callbacks"](#module-compile-callbacks) section below.
40
40
41
41
### `@behaviour`
42
42
@@ -124,7 +124,7 @@ defmodule Module do
124
124
### `@compile`
125
125
126
126
Defines options for module compilation. This is used to configure
127
- both Elixir and Erlang compilers, as any other compilation pass
127
+ both Elixir and Erlang compilers, as well as any other compilation pass
128
128
added by external tools. For example:
129
129
130
130
defmodule MyModule do
@@ -136,7 +136,7 @@ defmodule Module do
136
136
end
137
137
138
138
Multiple uses of `@compile` will accumulate instead of overriding
139
- previous ones. See the "Compile options" section below.
139
+ previous ones. See the [ "Compile options"](#module-compile-options) section below.
140
140
141
141
### `@deprecated` (since v1.6.0)
142
142
@@ -726,7 +726,7 @@ defmodule Module do
726
726
@ doc """
727
727
Returns information about module attributes used by Elixir.
728
728
729
- See the "Module attributes" section in the module documentation for more
729
+ See the [ "Module attributes"](#module-module-attributes) section in the module documentation for more
730
730
information on each attribute.
731
731
732
732
## Examples
0 commit comments