Skip to content

Commit 13ba223

Browse files
committed
syntax typo
1 parent 0db4779 commit 13ba223

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/lib/client/linked-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class DoublyLinkedList<T> {
118118
*nodes() {
119119
let node = this.#head;
120120
while(node) {
121-
const next = node.next
121+
const next = node.next;
122122
yield node;
123123
node = next;
124124
}

0 commit comments

Comments
 (0)