Skip to content

Commit 3e55b3e

Browse files
jofftiquezDobromir Hristov
authored and
Dobromir Hristov
committed
docs: fix incorrect spelling of test cases (#1409)
* refactor: fix incorrect spelling * refactor: fix incorrect spelling * refactor: fix incorrect spelling
1 parent 82ca2e3 commit 3e55b3e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: docs/guides/using-with-vuex.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ import Vuex from 'vuex'
353353
import storeConfig from './store-config'
354354
import { cloneDeep } from 'lodash'
355355

356-
test('increments "count" value when "increment" is commited', () => {
356+
test('increments "count" value when "increment" is committed', () => {
357357
const localVue = createLocalVue()
358358
localVue.use(Vuex)
359359
const store = new Vuex.Store(cloneDeep(storeConfig))
@@ -362,7 +362,7 @@ test('increments "count" value when "increment" is commited', () => {
362362
expect(store.state.count).toBe(1)
363363
})
364364

365-
test('updates "evenOrOdd" getter when "increment" is commited', () => {
365+
test('updates "evenOrOdd" getter when "increment" is committed', () => {
366366
const localVue = createLocalVue()
367367
localVue.use(Vuex)
368368
const store = new Vuex.Store(cloneDeep(storeConfig))

Diff for: docs/ja/guides/using-with-vuex.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ import Vuex from 'vuex'
352352
import storeConfig from './store-config'
353353
import { cloneDeep } from 'lodash'
354354

355-
test('increments count value when increment is commited', () => {
355+
test('increments count value when increment is committed', () => {
356356
const localVue = createLocalVue()
357357
localVue.use(Vuex)
358358
const store = new Vuex.Store(cloneDeep(storeConfig))
@@ -361,7 +361,7 @@ test('increments count value when increment is commited', () => {
361361
expect(store.state.count).toBe(1)
362362
})
363363

364-
test('updates evenOrOdd getter when increment is commited', () => {
364+
test('updates evenOrOdd getter when increment is committed', () => {
365365
const localVue = createLocalVue()
366366
localVue.use(Vuex)
367367
const store = new Vuex.Store(cloneDeep(storeConfig))

Diff for: docs/zh/guides/using-with-vuex.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ import Vuex from 'vuex'
354354
import storeConfig from './store-config'
355355
import { cloneDeep } from 'lodash'
356356

357-
test('increments "count" value when "increment" is commited', () => {
357+
test('increments "count" value when "increment" is committed', () => {
358358
const localVue = createLocalVue()
359359
localVue.use(Vuex)
360360
const store = new Vuex.Store(cloneDeep(storeConfig))
@@ -363,7 +363,7 @@ test('increments "count" value when "increment" is commited', () => {
363363
expect(store.state.count).toBe(1)
364364
})
365365

366-
test('updates "evenOrOdd" getter when "increment" is commited', () => {
366+
test('updates "evenOrOdd" getter when "increment" is committed', () => {
367367
const localVue = createLocalVue()
368368
localVue.use(Vuex)
369369
const store = new Vuex.Store(cloneDeep(storeConfig))

0 commit comments

Comments
 (0)