Skip to content

Commit 120cec0

Browse files
Brian Andersonktsn
Brian Anderson
authored andcommitted
Rephrase dumb to silly (#1525)
Replace dumb with silly, since dumb means mute or unable to speak. What the document means here is that this function call may seem to be a bit extra and non obvious at first glance. The whimsical word "silly" is a nice stand in for this.
1 parent f839fa2 commit 120cec0

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 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:
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)