From 547fc69b834e20974a209425351ca0051d5072a8 Mon Sep 17 00:00:00 2001 From: ska147 Date: Sat, 22 Oct 2016 12:42:22 -0700 Subject: [PATCH] Fix typo in describing Vue instances --- src/guide/reactivity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/reactivity.md b/src/guide/reactivity.md index 603ca7f9f1..a9afdb953b 100644 --- a/src/guide/reactivity.md +++ b/src/guide/reactivity.md @@ -55,7 +55,7 @@ There are also a few array-related caveats, which were discussed earlier in the ## Declaring Reactive Properties -Since Vue doesn't allow dynamically adding root-level reactive properties, this means you have to initialize you instances by declaring all root-level reactive data properties upfront, even just with an empty value: +Since Vue doesn't allow dynamically adding root-level reactive properties, you have to initialize Vue instances by declaring all root-level reactive data properties upfront, even just with an empty value: ``` js var vm = new Vue({