From 83a33e94670bb1e06ac5144aa8cc259e4c3ab4c0 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sat, 14 Oct 2017 01:43:00 +0900 Subject: [PATCH] docs: fix typo --- docs/en/guides/using-with-vuex.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/guides/using-with-vuex.md b/docs/en/guides/using-with-vuex.md index 7d42728a4..85f40d7fd 100644 --- a/docs/en/guides/using-with-vuex.md +++ b/docs/en/guides/using-with-vuex.md @@ -67,7 +67,7 @@ describe('Actions.vue', () => { }) }) - it('calls store action actionInput when input value is input and an input even is fired', () => { + it('calls store action actionInput when input value is input and an input event is fired', () => { const wrapper = shallow(Actions, { store, localVue }) const input = wrapper.find('input') input.element.value = 'input' @@ -75,7 +75,7 @@ describe('Actions.vue', () => { expect(actions.actionInput).toHaveBeenCalled() }) - it('does not call store action actionInput when input value is not input and an input even is fired', () => { + it('does not call store action actionInput when input value is not input and an input event is fired', () => { const wrapper = shallow(Actions, { store, localVue }) const input = wrapper.find('input') input.element.value = 'not input'