diff --git a/site/content/tutorial/02-reactivity/02-reactive-declarations/text.md b/site/content/tutorial/02-reactivity/02-reactive-declarations/text.md index bfc58f1ebe..aa765d3493 100644 --- a/site/content/tutorial/02-reactivity/02-reactive-declarations/text.md +++ b/site/content/tutorial/02-reactivity/02-reactive-declarations/text.md @@ -6,6 +6,7 @@ Svelte's reactivity not only keeps the DOM in sync with your application's varia ```js let count = 0; +let doubled ; $: doubled = count * 2; ```