From 690416b3d6ab7c7194050f772239b53c4b2d6f86 Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Wed, 28 Nov 2018 16:56:00 -0600 Subject: [PATCH] Update description of `eval` in core.rst --- docs/language/core.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/language/core.rst b/docs/language/core.rst index d292d75..4237418 100644 --- a/docs/language/core.rst +++ b/docs/language/core.rst @@ -195,7 +195,9 @@ eval ``eval`` evaluates a quoted expression and returns the value. The optional second and third arguments specify the dictionary of globals to use and the module name. The globals dictionary defaults to ``(local)`` and the module name -defaults to the name of the current module. +defaults to the name of the current module. An optional fourth keyword parameter, +``compiler``, allows one to re-use an existing ``HyASTCompiler`` object for the +compilation step. .. code-block:: clj @@ -1403,4 +1405,3 @@ are available. Some of their names have been changed: - ``dropwhile`` has been changed to ``drop-while`` - ``filterfalse`` has been changed to ``remove`` -