We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3b043 commit 32e7559Copy full SHA for 32e7559
src/main/clojure/cljs/core.cljc
@@ -692,7 +692,7 @@
692
the binding-forms are bound to their respective init-exprs or parts
693
therein."
694
[bindings & body]
695
- (assert-args
+ (assert-args let
696
(vector? bindings) "a vector for its binding"
697
(even? (count bindings)) "an even number of forms in binding vector")
698
`(let* ~(destructure bindings) ~@body))
@@ -702,7 +702,7 @@
702
703
therein. Acts as a recur target."
704
705
+ (assert-args loop
706
707
708
(core/let [db (destructure bindings)]
0 commit comments