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