Skip to content

Commit 0b6ab6e

Browse files
committed
Merge pull request #158 from bdunn313/patch-1
Missing word in instance section of guide
2 parents 81b8efb + 8fa5544 commit 0b6ab6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Consult the API reference for the full list of instance properties and methods.
7777

7878
## Instance Lifecycle
7979

80-
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:
80+
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:
8181

8282
``` js
8383
var vm = new Vue({

0 commit comments

Comments
 (0)