Skip to content

Commit

Permalink
* seed-cnt -> i
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Jan 8, 2025
1 parent 1cc0f1e commit f42b150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/cljs/cljs/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -7217,7 +7217,7 @@ reduces them without incurring seq initialization"
(let [kv (first extra-kvs)]
(aset ret i (-key kv))
(aset ret (inc i) (-val kv))
(recur (+ 2 seed-cnt) (next extra-kvs)))
(recur (+ 2 i) (next extra-kvs)))
ret))))

(set! (.-createAsIfByAssoc PersistentArrayMap)
Expand Down

0 comments on commit f42b150

Please sign in to comment.