Skip to content

Commit e26cfa0

Browse files
Apply suggestions from code review
Co-authored-by: Lambros Petrou <[email protected]>
1 parent 44562d6 commit e26cfa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/durable-objects/concepts/durable-object-lifecycle.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const id = env.MY_DURABLE_OBJECT.idFromName("foo");
1919
const stub = env.MY_DURABLE_OBJECT.get(id);
2020
```
2121

22-
Once we have the Durable Object Stub, we can now invoke methods on the Durable Object. Note that the above two lines does not yet send any request to the remote Durable Object.
22+
Once we have the Durable Object Stub, we can now invoke methods on the Durable Object. Note that the above two lines do not yet send any request to the remote Durable Object.
2323

2424
The following line invokes the `sayHello()` method of the Durable Object class bound to the `MY_DURABLE_OBJECT` binding:
2525

@@ -28,7 +28,7 @@ The following line invokes the `sayHello()` method of the Durable Object class b
2828
const rpcResponse = await stub.sayHello();
2929
```
3030

31-
At this point, the caller sends a request to the Durable Object identified by the stub. The lifecycle of the Durable Object now begins.
31+
At this point, the caller sends a request to the Durable Object identified by the stub. The lifecycle of the Durable Object begins.
3232

3333
## Durable Object Lifecycle state transitions
3434

0 commit comments

Comments
 (0)