Skip to content

Commit 8fa5544

Browse files
committed
Missing word in instance section of guide
Changed '... called after the instance created' to '... called after the instance is created'
1 parent 81b8efb commit 8fa5544

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)