瀏覽代碼

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 年之前
父節點
當前提交
a1a142c1d0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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: {