Skip to content

Commit

Permalink
fix typo in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Oct 22, 2024
1 parent 2c5f442 commit 79414ff
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 @@ -7212,7 +7212,7 @@ reduces them without incurring seq initialization"
extra-kvs (seq trailing)
ret (make-array (+ seed-cnt (* 2 (count extra-kvs))))
ret (array-copy seed 0 ret 0 seed-cnt)]
(loop [i seed-cnt extra-kvs extra-kvs]00
(loop [i seed-cnt extra-kvs extra-kvs]
(if extra-kvs
(let [kv (first extra-kvs)]
(aset ret i (-key kv))
Expand Down

0 comments on commit 79414ff

Please sign in to comment.