From 08ee44900d28055df34b9cd62abab1520a1fd565 Mon Sep 17 00:00:00 2001 From: Alan James Date: Tue, 11 Nov 2014 21:34:01 -0500 Subject: [PATCH] Fixes a typo. --- source/guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/index.md b/source/guide/index.md index 7caefdd484..23a1514c6c 100644 --- a/source/guide/index.md +++ b/source/guide/index.md @@ -53,7 +53,7 @@ Vue instances proxy all properties on data objects they observe. So once an obje 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. -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. +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. ### Directives