Skip to content

Commit 1039ff5

Browse files
committed
docs($router): Phan review
1 parent f151ded commit 1039ff5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/essentials/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ By injecting the router, we get access to it as `this.$router` as well as the cu
7171
export default {
7272
computed: {
7373
username () {
74-
// We will see what params are shortly
74+
// We will see what `params` is shortly
7575
return this.$route.params.username
7676
}
7777
},
@@ -87,6 +87,6 @@ export default {
8787

8888
Throughout the docs, we will often use the `router` instance. Keep in mind that `this.$router` is exactly the same as using `router`. The reason we use `this.$router` is because we don't want to import the router in every single component that needs to manipulate routing.
8989

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

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

0 commit comments

Comments
 (0)