From 27253a985a87de388829852919ca868c302ee25a Mon Sep 17 00:00:00 2001 From: Matt Sutkowski Date: Thu, 7 Nov 2024 15:36:21 -0800 Subject: [PATCH 1/2] chore: fix typo montly -> monthly --- src/content/docs/workflows/build/rules-of-workflows.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workflows/build/rules-of-workflows.mdx b/src/content/docs/workflows/build/rules-of-workflows.mdx index fb6258b2626a12..20bf6592c60b80 100644 --- a/src/content/docs/workflows/build/rules-of-workflows.mdx +++ b/src/content/docs/workflows/build/rules-of-workflows.mdx @@ -24,7 +24,7 @@ export class MyWorkflow extends WorkflowEntrypoint { // ✅ Good: Non-idempotent API/Binding calls are always done **after** checking if the operation is // still needed. await step.do( - `charge ${customer_id} for it's montly subscription`, + `charge ${customer_id} for it's monthly subscription`, async () => { // API call to check if customer was already charged const subscription = await fetch( From a9c4c16e63072312eca209291ea4fe162a844f5b Mon Sep 17 00:00:00 2001 From: Claire W <78226508+crwaters16@users.noreply.github.com> Date: Mon, 18 Nov 2024 13:35:55 -0600 Subject: [PATCH 2/2] Update src/content/docs/workflows/build/rules-of-workflows.mdx --- src/content/docs/workflows/build/rules-of-workflows.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workflows/build/rules-of-workflows.mdx b/src/content/docs/workflows/build/rules-of-workflows.mdx index 20bf6592c60b80..63f4dc6426f17f 100644 --- a/src/content/docs/workflows/build/rules-of-workflows.mdx +++ b/src/content/docs/workflows/build/rules-of-workflows.mdx @@ -24,7 +24,7 @@ export class MyWorkflow extends WorkflowEntrypoint { // ✅ Good: Non-idempotent API/Binding calls are always done **after** checking if the operation is // still needed. await step.do( - `charge ${customer_id} for it's monthly subscription`, + `charge ${customer_id} for its monthly subscription`, async () => { // API call to check if customer was already charged const subscription = await fetch(