Skip to content

Commit 5da6821

Browse files
Jinjiangeddyerburgh
authored andcommitted
docs(en): typos (vuejs#242)
* [docs][en] small fix * [en] typos
1 parent 87900a4 commit 5da6821

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/en/api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
* [components](./components/README.md)
5858
* [TransitionStub](./components/TransitionStub.md)
5959
* [TransitionGroupStub](./components/TransitionGroupStub.md)
60-
* [createLocalVue](./createLocalVue.md)
6160
* [Selectors](./selectors.md)
61+
* [createLocalVue](./createLocalVue.md)
6262
* [config](./config.md)

docs/en/api/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ Clones component before mounting if `true`, which avoids mutating the original c
165165

166166
- type: `Object`
167167

168-
Pass properties for components to use in injection. See [provide/inject](https://vuejs.org/v2/api/#provide-inject)
168+
Pass properties for components to use in injection. See [provide/inject](https://vuejs.org/v2/api/#provide-inject).

docs/en/guides/using-with-vuex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe('Actions.vue', () => {
9393

9494
What’s happening here? First we tell Vue to use Vuex with the `localVue.use` method. This is just a wrapper around `Vue.use`.
9595

96-
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.
96+
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.
9797

9898
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.
9999

0 commit comments

Comments
 (0)