diff --git a/docs/content/docs/foundations/control-flow-patterns.mdx b/docs/content/docs/foundations/control-flow-patterns.mdx index 20f52da54..099b75c02 100644 --- a/docs/content/docs/foundations/control-flow-patterns.mdx +++ b/docs/content/docs/foundations/control-flow-patterns.mdx @@ -70,7 +70,7 @@ export async function runExternalTask(userId: string) { ## A full example -Here's a simplified example taken from the [birthday card generator demo](https://github.com/vercel/workflow/tree/main/examples/birthday-card-generator), to illustrate how more complex orchestration can be modelled in promises. +Here's a simplified example taken from the [birthday card generator demo](https://github.com/vercel/workflow-examples/tree/main/birthday-card-generator), to illustrate how more complex orchestration can be modelled in promises. ```typescript lineNumbers import { createWebhook, sleep } from "workflow"