Skip to content

Commit a1a142c

Browse files
playpianolikewoahktsn
authored andcommitted
wording did not make sense. (vuejs#1031)
* wording did not make sense. > Actions don't Did not make sense. * Updating wording based on conversation
1 parent 5bb3dad commit a1a142c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/en/actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Actions are triggered with the `store.dispatch` method:
4545
store.dispatch('increment')
4646
```
4747

48-
This may look dumb at first sight: if we want to increment the count, why don't we just call `store.commit('increment')` directly? Well, remember that **mutations must be synchronous**? Actions don't. We can perform **asynchronous** operations inside an action:
48+
This may look dumb 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:
4949

5050
``` js
5151
actions: {

0 commit comments

Comments
 (0)