From 61e6e98c153423a8f6b56d73ba843bb12c15cbbb Mon Sep 17 00:00:00 2001 From: Dave Judd <52185dj@gmail.com> Date: Fri, 7 Mar 2025 13:20:15 -0600 Subject: [PATCH] Fix grammar Complexity is the singular subject of the sentence, so we should use "grows" instead of "grow". --- src/guide/reusability/composables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/reusability/composables.md b/src/guide/reusability/composables.md index c9c1520270..3ee3a06846 100644 --- a/src/guide/reusability/composables.md +++ b/src/guide/reusability/composables.md @@ -315,7 +315,7 @@ These restrictions are important because these are the contexts where Vue is abl ## Extracting Composables for Code Organization {#extracting-composables-for-code-organization} -Composables can be extracted not only for reuse, but also for code organization. As the complexity of your components grow, you may end up with components that are too large to navigate and reason about. Composition API gives you the full flexibility to organize your component code into smaller functions based on logical concerns: +Composables can be extracted not only for reuse, but also for code organization. As the complexity of your components grows, you may end up with components that are too large to navigate and reason about. Composition API gives you the full flexibility to organize your component code into smaller functions based on logical concerns: ```vue