Fix typo in ap-each

This commit is contained in:
agentultra 2013-11-30 10:29:41 -05:00
parent cb6889314a
commit 77db779019

View File

@ -25,7 +25,7 @@
(defmacro ap-each [lst &rest body]
"Evaluate the body form for each element in the list."
`(foreach [it ~list] ~@body))
`(foreach [it ~lst] ~@body))
(defmacro ap-each-while [lst form &rest body]