소스 검색

Update structure.md (#170)

Ryan Dobbs 9 년 전
부모
커밋
d25a976b96
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/en/structure.md

+ 1 - 1
docs/en/structure.md

@@ -107,7 +107,7 @@ export default new Vuex.Store({
 })
 ```
 
-Here, `cart` module's initial state will be attached to the root state tree as `store.state.cart`. In addition, **all the mutations defined in a sub-module only receives the sub-state-tree they are associated with**. So mutations defined in the `cart` module will receive `store.state.cart` as their first argument.
+Here, `cart` module's initial state will be attached to the root state tree as `store.state.cart`. In addition, **all the mutations defined in a sub-module only receive the sub-state-tree they are associated with**. So mutations defined in the `cart` module will receive `store.state.cart` as their first argument.
 
 The root of the sub-state-tree is irreplaceable inside the module itself. For example this won't work: