From a25e9c8fc7f77acb46e021cc6f357bf43cd6cbdb Mon Sep 17 00:00:00 2001 From: Ryan Dobbs Date: Sat, 30 Apr 2016 22:33:42 -0600 Subject: [PATCH] Update actions.md --- docs/en/actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/actions.md b/docs/en/actions.md index bd9c9a30f..a9b8a483d 100644 --- a/docs/en/actions.md +++ b/docs/en/actions.md @@ -67,7 +67,7 @@ const vm = new Vue({ }) ``` -What the above code does is binding the raw `incrementBy` action to the component's store instance, and expose it on the component as an instance method, `vm.incrementBy`. Any arguments passed to `vm.incrementBy` will be passed to the raw action function after the first argument which is the store, so calling: +What the above code does is bind the raw `incrementBy` action to the component's store instance, and expose it on the component as an instance method, `vm.incrementBy`. Any arguments passed to `vm.incrementBy` will be passed to the raw action function after the first argument which is the store, so calling: ``` js vm.incrementBy(1)