Skip to content

Commit

Permalink
[docs] fix typo (#8180)
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-fnbtech authored Jan 10, 2023
1 parent be38cec commit aa98397
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function addNumber() {
}
```

The same rule applies to array methods such as `pop`, `shift`, and `splice` and to objects methods such as `Map.set`, `Set.add`, etc.
The same rule applies to array methods such as `pop`, `shift`, and `splice` and to object methods such as `Map.set`, `Set.add`, etc.

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.

Expand Down Expand Up @@ -51,4 +51,4 @@ quox(obj);

...won't trigger reactivity on `obj.foo.bar`, unless you follow it up with `obj = obj`.

A simple rule of thumb: the updated variable must directly appear on the left hand side of the assignment.
A simple rule of thumb: the updated variable must directly appear on the left hand side of the assignment.

0 comments on commit aa98397

Please sign in to comment.