From d3a526ebf0cfe70833d889a0e0d6f7d003d78007 Mon Sep 17 00:00:00 2001 From: josephwilk Date: Wed, 6 Nov 2013 18:21:30 +0100 Subject: [PATCH] Improving docs on var! Remove implementation details about variable name. Try and make it clear it is just unquoting a var. --- lib/elixir/lib/kernel/special_forms.ex | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/elixir/lib/kernel/special_forms.ex b/lib/elixir/lib/kernel/special_forms.ex index 6f4b2ef9007..abf898180c6 100644 --- a/lib/elixir/lib/kernel/special_forms.ex +++ b/lib/elixir/lib/kernel/special_forms.ex @@ -927,8 +927,7 @@ defmodule Kernel.SpecialForms do @doc """ When used inside quoting, marks that the variable should not be hygienized. The argument can be either a variable - node (i.e. a tuple with three elements where the last - one is an atom) or an atom representing the variable name. + unquoted or an atom representing the variable name. Check `quote/2` for more information. """ defmacro var!(var)