Skip to content

Commit e1d81d2

Browse files
Apply suggestions from code review
Co-authored-by: Maddy <[email protected]>
1 parent 8f115ac commit e1d81d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,13 +260,13 @@ Preview your Durable Object Worker at `<YOUR_WORKER>.<YOUR_SUBDOMAIN>.workers.de
260260

261261
## Summary and final code
262262

263-
You final code should look like this:
263+
Your final code should look like this:
264264

265265
```ts title="index.ts"
266266
import { DurableObject } from "cloudflare:workers";
267267
export class MyDurableObject extends DurableObject {
268268
constructor(ctx: DurableObjectState, env: Env) {
269-
// Required, as we're extending the base class.
269+
// Required, as we are extending the base class.
270270
super(ctx, env)
271271
}
272272

@@ -293,7 +293,7 @@ export default {
293293
By finishing this tutorial, you have:
294294

295295
- Successfully created a Durable Object
296-
- Called the Durable Object by invoking a RPC method
296+
- Called the Durable Object by invoking a [RPC method](/workers/runtime-apis/rpc/)
297297
- Deployed the Durable Object globally
298298

299299
## Related resources

0 commit comments

Comments
 (0)