Skip to content

Commit da24ff4

Browse files
kazuponeddyerburgh
authored andcommitted
docs: fix typo (vuejs#98)
1 parent 2f28804 commit da24ff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ describe('Actions.vue', () => {
6767
})
6868
})
6969

70-
it('calls store action actionInput when input value is input and an input even is fired', () => {
70+
it('calls store action actionInput when input value is input and an input event is fired', () => {
7171
const wrapper = shallow(Actions, { store, localVue })
7272
const input = wrapper.find('input')
7373
input.element.value = 'input'
7474
input.trigger('input')
7575
expect(actions.actionInput).toHaveBeenCalled()
7676
})
7777

78-
it('does not call store action actionInput when input value is not input and an input even is fired', () => {
78+
it('does not call store action actionInput when input value is not input and an input event is fired', () => {
7979
const wrapper = shallow(Actions, { store, localVue })
8080
const input = wrapper.find('input')
8181
input.element.value = 'not input'

0 commit comments

Comments
 (0)