1
0
mirror of https://github.com/janet-lang/janet synced 2025-08-30 17:38:04 +00:00

Update src/boot/boot.janet

Co-authored-by: Michael Camilleri <mike@inqk.net>
This commit is contained in:
John Gabriele
2020-11-29 14:31:01 -05:00
committed by GitHub
parent 7b4eeecd9f
commit 51d6a13510

View File

@@ -500,7 +500,7 @@
(for-var-template i start stop 1 < + body))
(defmacro for
"Do a C-style for loop for side effects. Returns nil."
"Do a C-style for-loop for side effects. Returns nil."
[i start stop & body]
(for-template i start stop 1 < + body))