From f6bc012ade528ba35907699ae6c6d796c21c6937 Mon Sep 17 00:00:00 2001 From: Bjorn Lu <34116392+bluwy@users.noreply.github.com> Date: Mon, 6 Dec 2021 13:32:37 +0800 Subject: [PATCH] Update site/content/tutorial/02-reactivity/03-reactive-statements/text.md Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- .../tutorial/02-reactivity/03-reactive-statements/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } ```