From 8fa55447c9a6b1059f13cca4ecc092089b31373d Mon Sep 17 00:00:00 2001 From: Brad Dunn Date: Mon, 26 Oct 2015 15:10:11 -0400 Subject: [PATCH] Missing word in instance section of guide Changed '... called after the instance created' to '... called after the instance is created' --- src/guide/instance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/instance.md b/src/guide/instance.md index 1955984f71..cbae04dd48 100644 --- a/src/guide/instance.md +++ b/src/guide/instance.md @@ -77,7 +77,7 @@ Consult the API reference for the full list of instance properties and methods. ## Instance Lifecycle -Each Vue instance goes through a series of initialization steps when it is created - for example, it needs to setup data observation, compile the template, and create the necessary data bindings. Along the way, it will also invoke some **lifecycle hooks**, which give us the opportunity to execute custom logic. For example, the `created` hook is called after the instance created: +Each Vue instance goes through a series of initialization steps when it is created - for example, it needs to setup data observation, compile the template, and create the necessary data bindings. Along the way, it will also invoke some **lifecycle hooks**, which give us the opportunity to execute custom logic. For example, the `created` hook is called after the instance is created: ``` js var vm = new Vue({