diff --git a/docs/language/internals.rst b/docs/language/internals.rst index b9513f6..f6d1c3c 100644 --- a/docs/language/internals.rst +++ b/docs/language/internals.rst @@ -251,7 +251,7 @@ so our re-written ``nif`` would look like: [(zero? ~g) ~zero-form] [(neg? ~g) ~neg-form])))) -Finally, though we can make a new macro that does all this for us. :ref:`defmacro/g!` +Finally, though we can make a new macro that does all this for us. :ref:`defmacro/g!` will take all symbols that begin with ``g!`` and automatically call ``gensym`` with the remainder of the symbol. So ``g!a`` would become ``(gensym "a")``.