Skip to content

Commit 99bc0a9

Browse files
authored
docs: fix grammar (#3192)
Fix grammar Complexity is the singular subject of the sentence, so we should use "grows" instead of "grow".
1 parent 323abd5 commit 99bc0a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/reusability/composables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ These restrictions are important because these are the contexts where Vue is abl
315315

316316
## Extracting Composables for Code Organization {#extracting-composables-for-code-organization}
317317

318-
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:
318+
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:
319319

320320
```vue
321321
<script setup>

0 commit comments

Comments
 (0)