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 }