Skip to content

Commit ca4e692

Browse files
committed
docs(typo): checkout -> check out
1 parent b06ea21 commit ca4e692

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/en/api/router-link.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<router-link to="/" exact>
108108
```
109109

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

112112
- **event**
113113

docs/en/essentials/dynamic-matching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const User = {
2525
}
2626
```
2727

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

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

docs/en/essentials/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ const app = new Vue({
6464
// Now the app has started!
6565
```
6666

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

6969
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).

docs/en/essentials/passing-props.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ The URL `/search?q=vue` would pass `{query: 'vue'}` as props to the `SearchUser`
7272

7373
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.
7474

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

docs/en/essentials/redirect-and-alias.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const router = new VueRouter({
3535
})
3636
```
3737

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

4040
### Alias
4141

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

5656
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.
5757

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

0 commit comments

Comments
 (0)