Skip to content

Commit 7f68944

Browse files
committed
link to summary in Special Forms
1 parent 1c08705 commit 7f68944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/meta/macros.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ end
107107

108108
Constructs such as `unless/2`, `defmacro/2`, `def/2`, `defprotocol/2`, and many others used throughout this getting started guide are implemented in pure Elixir, often as a macros. This means that the constructs being used to build the language can be used by developers to extend the language to the domains they are working on.
109109

110-
We can define any function and macro we want, including ones that override the built-in definitions provided by Elixir. The only exceptions are Elixir special forms which are not implemented in Elixir and therefore cannot be overridden, [the full list of special forms is available in `Kernel.SpecialForms`](/docs/stable/elixir/Kernel.SpecialForms.html).
110+
We can define any function and macro we want, including ones that override the built-in definitions provided by Elixir. The only exceptions are Elixir special forms which are not implemented in Elixir and therefore cannot be overridden, [the full list of special forms is available in `Kernel.SpecialForms`](/docs/stable/elixir/Kernel.SpecialForms.html#summary).
111111

112112
## Macros hygiene
113113

0 commit comments

Comments
 (0)