summaryrefslogtreecommitdiff
path: root/cljlib.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'cljlib.fnl')
-rw-r--r--cljlib.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cljlib.fnl b/cljlib.fnl
index 98bb98e..d96d8da 100644
--- a/cljlib.fnl
+++ b/cljlib.fnl
@@ -273,7 +273,7 @@ Additionally you can use [`conj`](#conj) and [`apply`](#apply) with
(let [assoc-res (empty [])]
(each [k v (pairs col)]
(if (and (not assoc?)
- (not (= (type k) :number)))
+ (map? col))
(set assoc? true))
(insert res v)
(insert assoc-res [k v]))