--- a/DOCUMENTATION.markdown Tue Aug 23 01:09:10 2016 +0000
+++ b/DOCUMENTATION.markdown Tue Aug 23 01:10:28 2016 +0000
@@ -167,9 +167,9 @@
Execute body recursively, like Clojure's `loop`/`recur`.
- `bindings` should contain a list of symbols and (optional) default values.
+ `bindings` should contain a list of symbols and (optional) starting values.
- In `body`, `recur` will be bound to the function for recurring.
+ In `body` the symbol `recur` will be bound to the function for recurring.
Example:
--- a/losh.lisp Tue Aug 23 01:09:10 2016 +0000
+++ b/losh.lisp Tue Aug 23 01:10:28 2016 +0000
@@ -214,9 +214,9 @@
(defmacro recursively (bindings &body body)
"Execute body recursively, like Clojure's `loop`/`recur`.
- `bindings` should contain a list of symbols and (optional) default values.
+ `bindings` should contain a list of symbols and (optional) starting values.
- In `body`, `recur` will be bound to the function for recurring.
+ In `body` the symbol `recur` will be bound to the function for recurring.
Example: