From 8a2d89aad9050d458c4442cc428b6ab389437a56 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 14 Feb 2016 11:25:10 -0600 Subject: [PATCH] Make correction: function -> macro --- elixir/expose-internal-representation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/expose-internal-representation.md b/elixir/expose-internal-representation.md index 452da8d..aeb1e4b 100644 --- a/elixir/expose-internal-representation.md +++ b/elixir/expose-internal-representation.md @@ -3,7 +3,7 @@ Elixir is a language that has strong support for metaprogramming. It provides easy access to an internal representation of the code in the form of an Abstract Syntax Tree (AST) using maps and keyword lists. The `quote` -function is used to expose this internal representation. +macro is used to expose this internal representation. ```elixir > quote do: 2 * 2