42e0432fc20e

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

Changes

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