Skip to content

Commit c4510cf

Browse files
committed
Move chapter finale to the (new) end of the chapter
1 parent 027251d commit c4510cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

getting-started/alias-require-and-import.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,6 @@ end
191191

192192
As we will see in later chapters, aliases also play a crucial role in macros, to guarantee they are hygienic.
193193

194-
With this we are almost finishing our tour about Elixir modules. The last topic to cover is module attributes.
195-
196-
197194
## `use`
198195

199196
Although not a directive, `use` is a macro tightly related to `require` that allows you to use a module in the current context. It `require`s the given module and then calls the `__using__/1` callback on it allowing the module to inject some code into the current context.
@@ -227,3 +224,6 @@ end
227224

228225
By calling use, a hook called `__using__` will be invoked in `ExUnit.Case` which will then do the proper setup.
229226

227+
228+
With this we are almost finishing our tour about Elixir modules. The last topic to cover is module attributes.
229+

0 commit comments

Comments
 (0)