You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: docs/guide/actions.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Actions are triggered with the `store.dispatch` method:
47
47
store.dispatch('increment')
48
48
```
49
49
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:
0 commit comments