Explorar o código

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 %!s(int64=7) %!d(string=hai) anos
pai
achega
a1a142c1d0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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: {