Skip to content

Commit

Permalink
Rephrase dumb to silly (#1525)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Brian Anderson authored and ktsn committed Mar 19, 2019
1 parent f839fa2 commit 120cec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/actions.md
Expand Up @@ -47,7 +47,7 @@ Actions are triggered with the `store.dispatch` method:
store.dispatch('increment')
```

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:
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 120cec0

Please sign in to comment.