From 466251322fb57e76290a92d9b2364cb6d9ad22c6 Mon Sep 17 00:00:00 2001 From: Owan Hunte Date: Wed, 14 Aug 2019 11:10:35 -0400 Subject: [PATCH] Minor typo fix for Actions docs page. --- 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: {