Skip to content

Commit 01f8718

Browse files
authored
fix: add missing semicolon (#594)
1 parent 32e5e39 commit 01f8718

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/01-svelte/07-lifecycle/01-onmount

1 file changed

+1
-1
lines changed

content/tutorial/01-svelte/07-lifecycle/01-onmount/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ So far so good — you should see gently undulating colours in the shape of the
4141
```js
4242
/// file: App.svelte
4343
onMount(() => {
44-
const canvas = document.querySelector('canvas')
44+
const canvas = document.querySelector('canvas');
4545
const context = canvas.getContext('2d');
4646

4747
+++let frame =+++ requestAnimationFrame(function loop(t) {

0 commit comments

Comments
 (0)