From 0c4c726337708684af11df28400849030352e7b9 Mon Sep 17 00:00:00 2001 From: Rakhim Davletkaliyev Date: Wed, 11 Dec 2024 22:35:24 +0200 Subject: [PATCH] Update guide.mdx --- src/content/docs/workflows/get-started/guide.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workflows/get-started/guide.mdx b/src/content/docs/workflows/get-started/guide.mdx index 47a0d729fa21f92..571da586b8ad4db 100644 --- a/src/content/docs/workflows/get-started/guide.mdx +++ b/src/content/docs/workflows/get-started/guide.mdx @@ -62,7 +62,7 @@ type Params = { export class MyWorkflow extends WorkflowEntrypoint { async run(event: WorkflowEvent, step: WorkflowStep) { // Can access bindings on `this.env` - // Can access params on `event.params` + // Can access params on `event.payload` const files = await step.do('my first step', async () => { // Fetch a list of files from $SOME_SERVICE