docs: fix spelling and grammar (#13862)

Fixed various spelling errors and grammatical issues across multiple .mdx documentation files.
This commit is contained in:
MBLVD
2025-10-27 10:48:59 +02:00
committed by GitHub
parent dbf8fb9bda
commit 799b57c396
47 changed files with 80 additions and 80 deletions
@@ -29,6 +29,6 @@ This reference shows all the injection zones in the Medusa Admin related to the
---
## Product Catgory Pages
## Product Category Pages
<ProductCategoryContent />
@@ -159,7 +159,7 @@ export default defineMiddlewares({
})
```
The `additional_data` parameter validation is customized using `defineMiddlewares`. In the routes middleware configuration object, the `additionalDataValidator` property accepts [Zod](https://zod.dev/) validaiton rules.
The `additional_data` parameter validation is customized using `defineMiddlewares`. In the routes middleware configuration object, the `additionalDataValidator` property accepts [Zod](https://zod.dev/) validation rules.
In the snippet above, you add a validation rule indicating that `custom_name` is a string that can be passed in the `additional_data` object.
@@ -339,7 +339,7 @@ Make sure to replace `{token}` with an admin user's JWT token. Learn how to retr
Also, make sure to replace `{shipping_profile_id}` with an existing shipping profile's ID. You can retrieve one either from the Medusa Admin dashboard or using the [List Shipping Profiles API Route](!api!/admin#shipping-profiles_getshippingprofiles).
The request will return the product's details. You'll learn how to retreive the `custom_name` property with the product's details in the next section.
The request will return the product's details. You'll learn how to retrieve the `custom_name` property with the product's details in the next section.
---