Skip to content

Commit 61e6e98

Browse files
authored
Fix grammar
Complexity is the singular subject of the sentence, so we should use "grows" instead of "grow".
1 parent 72587eb commit 61e6e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/reusability/composables.md

+1-1
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)