diff --git a/site/content/tutorial/02-reactivity/03-reactive-statements/text.md b/site/content/tutorial/02-reactivity/03-reactive-statements/text.md index 7d64155a3a..dbfbd56483 100644 --- a/site/content/tutorial/02-reactivity/03-reactive-statements/text.md +++ b/site/content/tutorial/02-reactivity/03-reactive-statements/text.md @@ -23,7 +23,7 @@ You can even put the `$:` in front of things like `if` blocks: ```js $: if (count >= 10) { - alert(`count is dangerously high!`); + alert('count is dangerously high!'); count = 9; } ```