Skip to content

Commit 757bbee

Browse files
committed
style(util): 💄 run Prettier
1 parent 064f7ef commit 757bbee

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/util/trees/avl/__tests__/AvlSet.spec.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ test('can remove numbers from set', () => {
4141
});
4242

4343
test('can store structs', () => {
44-
class Struct { constructor (public x: number, public y: number) {} }
44+
class Struct {
45+
constructor(
46+
public x: number,
47+
public y: number,
48+
) {}
49+
}
4550
const set = new AvlSet<Struct>((a, b) => {
4651
const dx = a.x - b.x;
4752
return dx === 0 ? a.y - b.y : dx;

0 commit comments

Comments
 (0)