From 912a69ea523a8d46da199c1125fb6611aa73539d Mon Sep 17 00:00:00 2001 From: sajebehari <148820721+sajebehari@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:52:00 -0400 Subject: [PATCH] docs: removed should; proper ie format; removed plural from route --- .../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 9fb2e918637..ea59d87caa2 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 for Qwik City since it's the ### `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`.