Skip to content

Commit ab821c7

Browse files
committed
Fix linting errors.
1 parent f5d1c51 commit ab821c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sketch.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ import '../assets/style/sketch.css';
2222
function sketch(p5: P5Lib): void {
2323
p5.setup = (): void => {
2424
p5.createCanvas(720, 720);
25-
}
25+
};
2626

2727
p5.draw = (): void => {
2828
p5.background(0);
2929
p5.ellipse(p5.mouseX, p5.mouseY, 100, 100);
30-
}
30+
};
3131
}
3232

3333
new P5Lib(sketch);

0 commit comments

Comments
 (0)