Skip to content

Commit c685951

Browse files
Update src/content/docs/workers/tutorials/build-a-content-version-system/index.mdx
Co-authored-by: db-cloudflare <[email protected]>
1 parent 582f694 commit c685951

File tree

1 file changed

+3
-1
lines changed
  • src/content/docs/workers/tutorials/build-a-content-version-system

1 file changed

+3
-1
lines changed

src/content/docs/workers/tutorials/build-a-content-version-system/index.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ export type VersionListItem = Omit<Version, 'content' | 'diff'>;
288288

289289
**src/index.ts: Entrypoint for request routing and presentation**
290290

291-
In the flow of this file, Cloudflare Workers will acts as a router, route the incoming requests to the Durable Objects instance. The Durable Objects instance will process the request, and then provide the appropriate response.
291+
Cloudflare Workers will route incoming requests to the Durable Objects instance. The Durable Objects instance then processes the request, and provides the appropriate response to the Worker.
292+
293+
To handle incoming requests, add the following code to `src/index.ts`:
292294

293295
```
294296
/**

0 commit comments

Comments
 (0)