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