Skip to content

Commit 2ffedd6

Browse files
owanhuntektsn
authored andcommitted
docs: Minor typo fix for Actions docs page. (#1606)
1 parent b39c97c commit 2ffedd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/guide/actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Actions are triggered with the `store.dispatch` method:
4747
store.dispatch('increment')
4848
```
4949

50-
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:
50+
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:
5151

5252
``` js
5353
actions: {

0 commit comments

Comments
 (0)