Skip to content

Commit 8b5e4f4

Browse files
committed
fix semicolon syntax
1 parent 2409c96 commit 8b5e4f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ export class DoublyLinkedList<T> {
3333
previous: undefined,
3434
next: this.#tail,
3535
value
36-
}
36+
};
3737
return this.#tail = {
3838
previous: this.#head,
3939
next: undefined,
4040
value
41-
}
41+
};
4242
}
4343

4444
return this.#tail = this.#tail.next = {

0 commit comments

Comments
 (0)