Skip to content

Commit 84bb517

Browse files
committed
Fixing broken links
1 parent a15e7e1 commit 84bb517

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/durable-objects/get-started.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class MyDurableObject extends DurableObject {
8383

8484
</TabItem> </Tabs>
8585

86-
Workers communicate with a Durable Object using [remote-procedure call](/workers/runtime-apis/rpc/#_top). Public methods on a Durable Object class are exposed as [RPC methods](/durable-objects/best-practices/create-durable-object-stubs-and-send-requests/) to be called by another Worker.
86+
Workers communicate with a Durable Object using [remote-procedure call](/workers/runtime-apis/rpc/#_top). Public methods on a Durable Object class are exposed as [RPC methods](/durable-objects/features/create-durable-object-stubs-and-send-requests/) to be called by another Worker.
8787

8888
Your file should now look like:
8989

@@ -137,7 +137,7 @@ Durable Objects do not receive requests directly from the Internet. Durable Obje
137137
This is achieved by configuring a binding in the calling Worker for each Durable Object class that you would like it to be able to talk to. These bindings must be configured at upload time. Methods exposed by the binding can be used to communicate with particular Durable Objects.
138138
:::
139139

140-
A Worker is used to [access Durable Objects](/durable-objects/best-practices/create-durable-object-stubs-and-send-requests/).
140+
A Worker is used to [access Durable Objects](/durable-objects/features/create-durable-object-stubs-and-send-requests/).
141141

142142
To communicate with a Durable Object, the Worker's fetch handler should look like the following:
143143

@@ -184,7 +184,7 @@ In the code above, you have:
184184
5. Called a Durable Object by invoking a RPC method, `sayHello()`, on the Durable Object, which returns a `Hello, World!` string greeting.
185185
6. Received an HTTP response back to the client by constructing a HTTP Response with `return new Response()`.
186186

187-
Refer to [Access a Durable Object from a Worker](/durable-objects/best-practices/create-durable-object-stubs-and-send-requests/) to learn more about communicating with a Durable Object.
187+
Refer to [Access a Durable Object from a Worker](/durable-objects/features/create-durable-object-stubs-and-send-requests/) to learn more about communicating with a Durable Object.
188188

189189
## 4. Configure Durable Object bindings
190190

@@ -252,6 +252,6 @@ By finishing this tutorial, you have successfully created, tested and deployed a
252252

253253
## Related resources
254254

255-
- [Create Durable Object stubs](/durable-objects/best-practices/create-durable-object-stubs-and-send-requests/)
256-
- [Access Durable Objects Storage](/durable-objects/best-practices/access-durable-objects-storage/)
255+
- [Create Durable Object stubs](/durable-objects/features/create-durable-object-stubs-and-send-requests/)
256+
- [Access Durable Objects Storage](/durable-objects/features/access-durable-objects-storage/)
257257
- [Miniflare](https://github.com/cloudflare/workers-sdk/tree/main/packages/miniflare) - Helpful tools for mocking and testing your Durable Objects.

0 commit comments

Comments
 (0)