Selaa lähdekoodia

wording did not make sense. (#1031)

* wording did not make sense.

> Actions don't

Did not make sense.

* Updating wording based on conversation
Jacob Schatz 7 vuotta sitten
vanhempi
commit
a1a142c1d0
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      docs/en/actions.md

+ 1 - 1
docs/en/actions.md

@@ -45,7 +45,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? Well, remember that **mutations must be synchronous**? Actions don't. We can perform **asynchronous** operations inside an action:
+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:
 
 ``` js
 actions: {