From 2ffedd6b272b2b0979de081494587b564d895ccc Mon Sep 17 00:00:00 2001 From: Owan Hunte Date: Sat, 9 Nov 2019 03:25:54 -0400 Subject: [PATCH] docs: Minor typo fix for Actions docs page. (#1606) --- docs/guide/actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/actions.md b/docs/guide/actions.md index 081141ab8..2ccc999f5 100644 --- a/docs/guide/actions.md +++ b/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: {