File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/content/docs/durable-objects Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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"
266266import { DurableObject } from " cloudflare:workers" ;
267267export 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 {
293293By 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
You can’t perform that action at this time.
0 commit comments