浏览代码

Typo fix at tutorial.md

J Bruni 9 年之前
父节点
当前提交
d5ba9f1125
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/en/tutorial.md

+ 1 - 1
docs/en/tutorial.md

@@ -148,7 +148,7 @@ The action is a function which is called from the component. Action functions ca
 Create a new file in `vuex/actions.js` with a single function `incrementCounter`
 Create a new file in `vuex/actions.js` with a single function `incrementCounter`
 
 
 ```js
 ```js
-// An action will recieve the store as the first argument.
+// An action will receive the store as the first argument.
 // Since we are only interested in the dispatch (and optionally the state)
 // Since we are only interested in the dispatch (and optionally the state)
 // We can pull those two parameters using the ES6 destructuring feature
 // We can pull those two parameters using the ES6 destructuring feature
 export const incrementCounter = function ({ dispatch, state }) {
 export const incrementCounter = function ({ dispatch, state }) {