From 99c4a3e061bec93a9f8104e6348388b905210cc8 Mon Sep 17 00:00:00 2001 From: Sholom Aber Date: Wed, 1 Nov 2023 10:44:11 -0700 Subject: [PATCH] docs: typo (#2472) Co-authored-by: Eduardo San Martin Morote --- packages/docs/core-concepts/actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/core-concepts/actions.md b/packages/docs/core-concepts/actions.md index 6fd99debcc..41dd607cb3 100644 --- a/packages/docs/core-concepts/actions.md +++ b/packages/docs/core-concepts/actions.md @@ -54,7 +54,7 @@ export const useUsers = defineStore('users', { You are also completely free to set whatever arguments you want and return anything. When calling actions, everything will be automatically inferred! -Actions are invoked like function or regular methods: +Actions are invoked like regular functions and methods: ```vue