Skip to content

Commit 9a1c606

Browse files
authored
[Workflows] Fix typo (#18222)
1 parent 2ea6276 commit 9a1c606

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)