# HG changeset patch # User Steve Losh # Date 1471914628 0 # Node ID 42e0432fc20e30d8bec11d47054d076b066414d1 # Parent 8e95ffb4e969a52919cc3d96274a76c6f8dcc230 Update docs diff -r 8e95ffb4e969 -r 42e0432fc20e DOCUMENTATION.markdown --- 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: diff -r 8e95ffb4e969 -r 42e0432fc20e losh.lisp --- 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: