From eb7719ca0462c8eeccfcff89fad0b1d3cb94ff23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20=C5=A0kvorc?= Date: Sun, 22 Nov 2015 20:55:49 +0100 Subject: [PATCH] Update instance.md Setup is a noun, set up is the verb you're looking for. --- 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 cbae04dd48..4014ddceae 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 is created: +Each Vue instance goes through a series of initialization steps when it is created - for example, it needs to set up 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({