From e83a41c9e6e775c8ddfb85f4cd5503d825a8d80b Mon Sep 17 00:00:00 2001 From: gtmnayan <50981692+gtm-nayan@users.noreply.github.com> Date: Wed, 20 Apr 2022 09:45:56 +0545 Subject: [PATCH] Update site/content/tutorial/02-reactivity/04-updating-arrays-and-objects/text.md Co-authored-by: Tan Li Hau --- .../02-reactivity/04-updating-arrays-and-objects/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 50b25be05a..54a8bcb0e7 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 @@ -23,7 +23,7 @@ function addNumber() { } ``` -The same rule applies for other array methods such as `pop`, `shift`, `splice` and for other objects such as `Map.set`. +The same rule applies to array methods such as `pop`, `shift`, `splice` and to objects methods such as `Map.set`. Assignments to *properties* of arrays and objects — e.g. `obj.foo += 1` or `array[i] = x` — work the same way as assignments to the values themselves.