diff --git a/docs/en/api/README.md b/docs/en/api/README.md index 0404e1e93..28993ec27 100644 --- a/docs/en/api/README.md +++ b/docs/en/api/README.md @@ -57,6 +57,6 @@ * [components](./components/README.md) * [TransitionStub](./components/TransitionStub.md) * [TransitionGroupStub](./components/TransitionGroupStub.md) -* [createLocalVue](./createLocalVue.md) * [Selectors](./selectors.md) +* [createLocalVue](./createLocalVue.md) * [config](./config.md) diff --git a/docs/en/api/options.md b/docs/en/api/options.md index 0c3c7421f..88c41b2be 100644 --- a/docs/en/api/options.md +++ b/docs/en/api/options.md @@ -165,4 +165,4 @@ Clones component before mounting if `true`, which avoids mutating the original c - type: `Object` -Pass properties for components to use in injection. See [provide/inject](https://vuejs.org/v2/api/#provide-inject) +Pass properties for components to use in injection. See [provide/inject](https://vuejs.org/v2/api/#provide-inject). diff --git a/docs/en/guides/using-with-vuex.md b/docs/en/guides/using-with-vuex.md index dacdc253a..462e964db 100644 --- a/docs/en/guides/using-with-vuex.md +++ b/docs/en/guides/using-with-vuex.md @@ -93,7 +93,7 @@ describe('Actions.vue', () => { What’s happening here? First we tell Vue to use Vuex with the `localVue.use` method. This is just a wrapper around `Vue.use`. -We then make a mock store by calling new `Vuex.store` with our mock values. We only pass it the actions, since that’s all we care about. +We then make a mock store by calling `new Vuex.store` with our mock values. We only pass it the actions, since that’s all we care about. The actions are [jest mock functions](https://facebook.github.io/jest/docs/en/mock-functions.html). These mock functions give us methods to assert whether the actions were called or not.