Browse Source

Update structure.md (#170)

Ryan Dobbs 9 years ago
parent
commit
d25a976b96
1 changed files with 1 additions and 1 deletions
  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:
 The root of the sub-state-tree is irreplaceable inside the module itself. For example this won't work: