Преглед изворни кода

docs: Minor typo fix for Actions docs page. (#1606)

Owan Hunte пре 5 година
родитељ
комит
2ffedd6b27
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      docs/guide/actions.md

+ 1 - 1
docs/guide/actions.md

@@ -47,7 +47,7 @@ Actions are triggered with the `store.dispatch` method:
 store.dispatch('increment')
 ```
 
-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:
+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: {