Skip to content

Commit f0d245f

Browse files
committed
fix: comment typos
1 parent 29e8b3f commit f0d245f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/app/api/categories/[category]/[subcategory]/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type ProductCategoryResponse = ProductCategoryDTO & {
1111

1212
/**
1313
* This endpoint uses the serverless Product Module to retrieve a category and its products by handle.
14-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
14+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
1515
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
1616
*/
1717
export async function GET(

src/app/api/categories/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { notFound } from "next/navigation"
44

55
/**
66
* This endpoint uses the serverless Product Module to list and count all product categories.
7-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
7+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
88
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
99
*/
1010
export async function GET(request: NextRequest) {

src/app/api/collections/[handle]/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import getPrices from "@lib/util/get-product-prices"
66

77
/**
88
* This endpoint uses the serverless Product Module to retrieve a collection and its products by handle.
9-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
9+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
1010
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
1111
*/
1212
export async function GET(

src/app/api/collections/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { notFound } from "next/navigation"
44

55
/**
66
* This endpoint uses the serverless Product Module to list and count all product collections.
7-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
7+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
88
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
99
*/
1010
export async function GET(request: NextRequest) {

src/app/api/products/[handle]/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { initialize as initializeProductModule } from "@medusajs/product"
55

66
/**
77
* This endpoint uses the serverless Product Module to retrieve a product by handle.
8-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
8+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
99
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
1010
*/
1111
export async function GET(

src/app/api/products/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { notFound } from "next/navigation"
1111

1212
/**
1313
* This endpoint uses the serverless Product Module to retrieve a list of products.
14-
* The module connects directly to you Medusa database to retrieve and manipulate data, without the need for a dedicated server.
14+
* The module connects directly to your Medusa database to retrieve and manipulate data, without the need for a dedicated server.
1515
* Read more about the Product Module here: https://docs.medusajs.com/modules/products/serverless-module
1616
*/
1717
export async function GET(request: NextRequest) {

0 commit comments

Comments
 (0)