a67a98352d5b

Update docs
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 23 Aug 2016 01:10:58 +0000
parents 42e0432fc20e
children af7866087dc8
branches/tags (none)
files DOCUMENTATION.markdown losh.lisp

Changes

--- 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.