소스 검색

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`
 
 ```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)
 // We can pull those two parameters using the ES6 destructuring feature
 export const incrementCounter = function ({ dispatch, state }) {