1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00

Fix documentation for defer.

This commit is contained in:
Calvin Rose 2020-02-12 09:34:23 -06:00
parent 031a9894b0
commit b9a2bb8104

View File

@ -287,7 +287,7 @@
~(let (,;accum) ,;body))
(defmacro defer
"Run form unconditionally after form, even if the body throws an error."
"Run form unconditionally after body, even if the body throws an error."
[form & body]
(with-syms [f r]
~(do