Skip to content

Commit 68207c0

Browse files
committed
Remove alias bit from macro, closes #15018
1 parent 14bd4b5 commit 68207c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/pages/meta-programming/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Unless.macro_unless(true, do: IO.puts("this should never be printed"))
6161
Our `macro_unless` macro received the following:
6262

6363
```elixir
64-
macro_unless(true, [do: {{:., [], [{:__aliases__, [alias: false], [:IO]}, :puts]}, [], ["this should never be printed"]}])
64+
macro_unless(true, [do: {{:., [], [{:__aliases__, [], [:IO]}, :puts]}, [], ["this should never be printed"]}])
6565
```
6666

6767
and it then returned a quoted expression as follows:

0 commit comments

Comments
 (0)