Skip to content

Commit

Permalink
docs: Minor typo fix for Actions docs page. (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
owanhunte authored and ktsn committed Nov 9, 2019
1 parent b39c97c commit 2ffedd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Actions are triggered with the `store.dispatch` method:
store.dispatch('increment')
```

This may look silly at first sight: if we want to increment the count, why don't we just call `store.commit('increment')` directly? Remember that **mutations have to be synchronous**? Actions don't. We can perform **asynchronous** operations inside an action:
This may look silly at first sight: if we want to increment the count, why don't we just call `store.commit('increment')` directly? Remember that **mutations have to be synchronous**. Actions don't. We can perform **asynchronous** operations inside an action:

``` js
actions: {
Expand Down

0 comments on commit 2ffedd6

Please sign in to comment.