Skip to content

Commit

Permalink
docs(typo): checkout -> check out
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Aug 15, 2017
1 parent b06ea21 commit ca4e692
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/en/api/router-link.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<router-link to="/" exact>
```

Checkout more examples explaining active link class [live](https://jsfiddle.net/8xrk1n9f/).
Check out more examples explaining active link class [live](https://jsfiddle.net/8xrk1n9f/).

- **event**

Expand Down
2 changes: 1 addition & 1 deletion docs/en/essentials/dynamic-matching.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const User = {
}
```

You can checkout a live example [here](http://jsfiddle.net/yyx990803/4xfa2f19/).
You can check out a live example [here](http://jsfiddle.net/yyx990803/4xfa2f19/).

You can have multiple dynamic segments in the same route, and they will map to corresponding fields on `$route.params`. Examples:

Expand Down
2 changes: 1 addition & 1 deletion docs/en/essentials/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ const app = new Vue({
// Now the app has started!
```

You can also checkout this example [live](http://jsfiddle.net/yyx990803/xgrjzsup/).
You can also check out this example [live](http://jsfiddle.net/yyx990803/xgrjzsup/).

Notice that a `<router-link>` automatically gets the `.router-link-active` class when its target route is matched. You can learn more about it in its [API reference](../api/router-link.md).
2 changes: 1 addition & 1 deletion docs/en/essentials/passing-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ The URL `/search?q=vue` would pass `{query: 'vue'}` as props to the `SearchUser`

Try to keep the `props` function stateless, as it's only evaluated on route changes. Use a wrapper component if you need state to define the props, that way vue can react to state changes.

For advanced usage, checkout the [example](https://github.com/vuejs/vue-router/blob/dev/examples/route-props/app.js).
For advanced usage, check out the [example](https://github.com/vuejs/vue-router/blob/dev/examples/route-props/app.js).
4 changes: 2 additions & 2 deletions docs/en/essentials/redirect-and-alias.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const router = new VueRouter({
})
```

For other advanced usage, checkout the [example](https://github.com/vuejs/vue-router/blob/dev/examples/redirect/app.js).
For other advanced usage, check out the [example](https://github.com/vuejs/vue-router/blob/dev/examples/redirect/app.js).

### Alias

Expand All @@ -55,4 +55,4 @@ const router = new VueRouter({

An alias gives you the freedom to map a UI structure to an arbitrary URL, instead of being constrained by the configuration's nesting structure.

For advanced usage, checkout the [example](https://github.com/vuejs/vue-router/blob/dev/examples/route-alias/app.js).
For advanced usage, check out the [example](https://github.com/vuejs/vue-router/blob/dev/examples/route-alias/app.js).

0 comments on commit ca4e692

Please sign in to comment.