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
@@ -1029,7 +1029,7 @@ Finally, add the method to create the product:
export const createProductHighlights = [
["7", "product", "The product to create in Contentful."],
["11", "get", "Try to retrieve the existing product entry in Contentful."],
["16", "productEntry", "Return the existng product entry."],
["16", "productEntry", "Return the existing product entry."],
["20", "createWithId", "Create a new entry in Contentful for the product."],
["65", "createProductOption", "Create the product's options in Contentful."],
["70", "createProductVariant", "Create the product's variants in Contentful."],
@@ -2360,7 +2360,7 @@ Then, you format the retrieved products to:
<Note title="Tip">
To paginate the retrieved products, implemet a `listAndCount` method as explained in the [Query Context](!docs!/learn/fundamentals/module-links/query-context#using-pagination-with-query) documentation.
To paginate the retrieved products, implement a `listAndCount` method as explained in the [Query Context](!docs!/learn/fundamentals/module-links/query-context#using-pagination-with-query) documentation.
</Note>
@@ -3037,7 +3037,7 @@ In the workflow, you:
<Note title="Why use When in Workflows?">
You can't perform data manipulation in a workflow's constructor function. Instead, the Workflows SDK includes utility functions like `when` to perform typical operations that requires accessing data values. Learn more about workflow constraints in the [Workflow Constraints](!docs!/learn/fundamentals/workflows/constructor-constraints) documetation.
You can't perform data manipulation in a workflow's constructor function. Instead, the Workflows SDK includes utility functions like `when` to perform typical operations that requires accessing data values. Learn more about workflow constraints in the [Workflow Constraints](!docs!/learn/fundamentals/workflows/constructor-constraints) documentation.
</Note>