From 45935e0791f706bf88692ec680bf98dd55d77941 Mon Sep 17 00:00:00 2001 From: sammce <78268167+sammce@users.noreply.github.com> Date: Tue, 26 Apr 2022 11:13:49 +0100 Subject: [PATCH] docs(concepts): change phrasing (#4601) --- docs/content/2.guide/1.concepts/2.vuejs-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/1.concepts/2.vuejs-development.md b/docs/content/2.guide/1.concepts/2.vuejs-development.md index 0a20be32c..818b69dd3 100644 --- a/docs/content/2.guide/1.concepts/2.vuejs-development.md +++ b/docs/content/2.guide/1.concepts/2.vuejs-development.md @@ -68,7 +68,7 @@ This way, a minimal Vue 3 application can be reduced to 12 kb gzipped. ### Composition API -The only way to provide data and logic to components in Vue 2 was through the Options API, allowing to return data and methods to a template with pre-defined properties like `data` and `methods`: +The only way to provide data and logic to components in Vue 2 was through the Options API, which allows you to return data and methods to a template with pre-defined properties like `data` and `methods`: ```vue