From 0e74dd97e6ada193765c9647642ea0cf88e3ef63 Mon Sep 17 00:00:00 2001 From: sajebehari <148820721+sajebehari@users.noreply.github.com> Date: Mon, 10 Jun 2024 14:30:53 -0400 Subject: [PATCH] docs: improve readability (#6477) --- .../docs/src/routes/docs/(qwikcity)/project-structure/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/routes/docs/(qwikcity)/project-structure/index.mdx b/packages/docs/src/routes/docs/(qwikcity)/project-structure/index.mdx index 1ae3f4b8020..fa650bdabe3 100644 --- a/packages/docs/src/routes/docs/(qwikcity)/project-structure/index.mdx +++ b/packages/docs/src/routes/docs/(qwikcity)/project-structure/index.mdx @@ -55,7 +55,7 @@ The `src/routes/` directory is a special directory where Qwik City will look for ### `src/components/` -The directory named `src/components/` follows a standard convention. It's present in all Qwik starters and you can rename it if you prefer. The `src/components/` directory is where you should put your components, ie, reusable pieces of code that can be used in multiple places. These components are not routes or layouts, but they can be referenced from within your routes or layout code. +The directory named `src/components/` follows a standard convention. It's present in all Qwik starters and you can rename it if you prefer. The `src/components/` directory is where to put your components (i.e. reusable pieces of code that can be used in multiple places). These components are not routes or layouts, but they can be referenced from within your route or layout code. For example, a `Button` component should be inside `src/components/button/button.tsx`.