Skip to content

Commit 4e81d79

Browse files
authored
Typo: Update rules-of-workflows.mdx
1 parent 1300958 commit 4e81d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export class MyWorkflow extends WorkflowEntrypoint {
255255
let catList = await step.do("get cat list from KV", async () => {
256256
return await env.KV.get("cat-list")
257257
})
258-
for(const cat of carList) {
258+
for(const cat of catList) {
259259
await step.do(`get cat: ${cat}`, async () => {
260260
return await env.KV.get(cat)
261261
})

0 commit comments

Comments
 (0)