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 1300958 commit 4e81d79Copy full SHA for 4e81d79
src/content/docs/workflows/build/rules-of-workflows.mdx
@@ -255,7 +255,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
255
let catList = await step.do("get cat list from KV", async () => {
256
return await env.KV.get("cat-list")
257
})
258
- for(const cat of carList) {
+ for(const cat of catList) {
259
await step.do(`get cat: ${cat}`, async () => {
260
return await env.KV.get(cat)
261
0 commit comments