Ver Fonte

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

Owan Hunte há 5 anos atrás
pai
commit
2ffedd6b27
1 ficheiros alterados com 1 adições e 1 exclusões
  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: {