Skip to content

Commit 9a2c2e8

Browse files
committed
typos
1 parent 5873009 commit 9a2c2e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12414,7 +12414,7 @@ reduces them without incurring seq initialization"
1241412414
(when (pos? (alength keys))
1241512415
(prim-seq
1241612416
(.map (.sort keys obj-map-compare-keys)
12417-
#(unchecked-get strobj %)) 0)))
12417+
#(MapEntry. % (unchecked-get strobj %))))))
1241812418

1241912419
ICounted
1242012420
(-count [coll] (alength keys))
@@ -12558,11 +12558,11 @@ reduces them without incurring seq initialization"
1255812558
(loop [i 0]
1255912559
(if (< i cnt)
1256012560
(let [bckt (unchecked-get hashobj (aget hashes i))
12561-
len (alength bkt)]
12561+
len (alength bckt)]
1256212562
(loop [j 0]
1256312563
(when (< j len)
1256412564
(do
12565-
(.push arr (MapEntry. (aget bkt j) (aget bkt (inc j)) nil))
12565+
(.push arr (MapEntry. (aget bckt j) (aget bckt (inc j)) nil))
1256612566
(recur (+ j 2)))))
1256712567
(recur (inc i)))
1256812568
(prim-seq arr))))))

0 commit comments

Comments
 (0)