From ba8570643efc61e306d3eba9f0365313c9a3ff07 Mon Sep 17 00:00:00 2001 From: Stephane Date: Tue, 20 Jul 2021 18:11:30 +0200 Subject: [PATCH] Fix wrong reference in site/content/docs/01-component-format.md Co-authored-by: Geoff Rich --- site/content/docs/01-component-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/01-component-format.md b/site/content/docs/01-component-format.md index 7323b8638b..eafcd8963e 100644 --- a/site/content/docs/01-component-format.md +++ b/site/content/docs/01-component-format.md @@ -117,7 +117,7 @@ Because Svelte's reactivity is based on assignments, using array methods like `. // this method call does not trigger an update arr.push(2); // this assignment will trigger an update - // if the markup references `count` + // if the markup references `arr` arr = arr }