We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00b9f4 commit f0b720aCopy full SHA for f0b720a
src/content/docs/workflows/build/rules-of-workflows.mdx
@@ -232,7 +232,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
232
return await env.KV.get(event.user)
233
})
234
235
- let someOtherData await step.do("following step that uses that state", async () => {
+ let someOtherData = await step.do("following step that uses that state", async () => {
236
// Access to userData here
237
// Will always be the same if this step is retried
238
@@ -277,7 +277,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
277
278
}
279
280
-}
+ }}}
281
```
282
</TypeScriptExample>
283
0 commit comments