Skip to content

Commit f0b720a

Browse files
committed
fix
1 parent d00b9f4 commit f0b720a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/workflows/build/rules-of-workflows.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
232232
return await env.KV.get(event.user)
233233
})
234234

235-
let someOtherData await step.do("following step that uses that state", async () => {
235+
let someOtherData = await step.do("following step that uses that state", async () => {
236236
// Access to userData here
237237
// Will always be the same if this step is retried
238238
})
@@ -277,7 +277,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
277277
})
278278
}
279279
}
280-
}
280+
}}}
281281
```
282282
</TypeScriptExample>
283283

0 commit comments

Comments
 (0)