Skip to content

Commit

Permalink
Fix typos (#736)
Browse files Browse the repository at this point in the history
* Fix typos

* Update api.md
  • Loading branch information
Alex-Sokolov authored and posva committed Apr 13, 2017
1 parent 0b41cf9 commit 72107ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/en/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ const store = new Vuex.Store({ ...options })

```
state, // will be module local state if defined in a module.
getters, // same as store.getters
getters // same as store.getters
```

Specific when defined in a module

```
state, // will be module local state if defined in a module.
getters, // module local getters of the current module
rootState // global state
rootState, // global state
rootGetters // all getters
```

Expand Down

0 comments on commit 72107ac

Please sign in to comment.