Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
leonoel committed Jul 25, 2024
1 parent 6f04d01 commit 3c46e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hyperfiddle/electric/impl/runtime_de.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ T T T -> (EXPR T)
(aset prv input-sub-slot-next sub)
(aset nxt input-sub-slot-prev sub)
(aset sub input-sub-slot-prev prv)
(aset sub input-sub-slot-prev nxt))
(aset sub input-sub-slot-next nxt))
(do (aset input input-slot-subs sub)
(aset sub input-sub-slot-prev sub)
(aset sub input-sub-slot-next sub))))
Expand Down Expand Up @@ -757,7 +757,7 @@ T T T -> (EXPR T)
(when (identical? s (aget s input-sub-slot-ready))
(aset s input-sub-slot-ready (aget peer peer-slot-sub-ready))
(aset peer peer-slot-sub-ready s))))
(let [n (aget sub input-sub-slot-next)]
(let [n (aget s input-sub-slot-next)]
(when-not (identical? n sub) (recur n))))))
remote)

Expand Down

0 comments on commit 3c46e98

Please sign in to comment.