Skip to content

Commit b27924e

Browse files
committed
Merge pull request #42 from alanjames1987/master
Fixes a typo.
2 parents 5b48576 + 08ee449 commit b27924e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Vue instances proxy all properties on data objects they observe. So once an obje
5353

5454
The data objects are mutated in place, so modifying it by reference has the same effects as modifying `vm.$data`. This makes it possible for multiple Vue instances to observe the same piece of data. In larger applications it is also recommended to treat Vue instances as pure views, and externalize the data manipulation logic into a more discrete store layer.
5555

56-
One caveat here is that once the observation has been initiated, Vue.js will not be able detect newly added or deleted properties. To get around that, observed objects are augmented with `$add` and `$delete` methods.
56+
One caveat here is that once the observation has been initiated, Vue.js will not be able to detect newly added or deleted properties. To get around that, observed objects are augmented with `$add` and `$delete` methods.
5757

5858
### Directives
5959

0 commit comments

Comments
 (0)