diff --git a/AUTHORS b/AUTHORS index d0bd025..a39d46e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -76,4 +76,4 @@ * Philip Xu * Charles de Lacombe * John Patterson - +* Kai Lüke \ No newline at end of file diff --git a/docs/language/api.rst b/docs/language/api.rst index c4fa9d3..cb1297c 100644 --- a/docs/language/api.rst +++ b/docs/language/api.rst @@ -730,7 +730,7 @@ For example, .. code-block:: clj => (defn expensive-get-number [] (print "spam") 14) - => (defmacro triple-1 [n] `(+ n n n)) + => (defmacro triple-1 [n] `(+ ~n ~n ~n)) => (triple-1 (expensive-get-number)) ; evals n three times spam spam