--- a/DOCUMENTATION.markdown Tue Aug 23 01:10:28 2016 +0000
+++ b/DOCUMENTATION.markdown Tue Aug 23 01:10:58 2016 +0000
@@ -165,7 +165,7 @@
&BODY
BODY)
-Execute body recursively, like Clojure's `loop`/`recur`.
+Execute `body` recursively, like Clojure's `loop`/`recur`.
`bindings` should contain a list of symbols and (optional) starting values.
--- a/losh.lisp Tue Aug 23 01:10:28 2016 +0000
+++ b/losh.lisp Tue Aug 23 01:10:58 2016 +0000
@@ -212,7 +212,7 @@
;;;; Control Flow
(defmacro recursively (bindings &body body)
- "Execute body recursively, like Clojure's `loop`/`recur`.
+ "Execute `body` recursively, like Clojure's `loop`/`recur`.
`bindings` should contain a list of symbols and (optional) starting values.