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`.