diff --git a/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md b/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md index 82e4c91d35..96eb154963 100644 --- a/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md +++ b/site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md @@ -31,11 +31,11 @@ function addNumber() { } ``` -A simple rule of thumb: the name of the updated variable must appear on the left hand side of the assignment. For example this... +A simple rule: the name of the updated variable must appear on the left hand side of the assignment. For example this... ```js const foo = obj.foo; foo.bar = 'baz'; ``` -...won't update references to `obj.foo.bar`, unless you follow it up with `obj = obj`. \ No newline at end of file +...won't update references to `obj.foo.bar`, unless you follow it up with `obj = obj`.