Skip to content

Commit 8009fb4

Browse files
committed
Fix actors docs typo and unused variable
1 parent c9a20c0 commit 8009fb4

File tree

1 file changed

+1
-2
lines changed
  • daprdocs/content/en/js-sdk-docs/js-actors

1 file changed

+1
-2
lines changed

daprdocs/content/en/js-sdk-docs/js-actors/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class ActorSayImp extends AbstractActor implements ActorSayInterf
4040
```
4141

4242
## Invoking Actors
43-
Use the DaprServer package to create your actors bindings, which will initalize and register your actors. After Actors are registered, use the DaprClient to invoke methods on an actor. The will client call the actor methods defined in the actor interface.
43+
Use the DaprServer package to create your actors bindings, which will initalize and register your actors. After Actors are registered, use the DaprClient to invoke methods on an actor. The client will call the actor methods defined in the actor interface.
4444

4545
```javascript
4646
import { DaprServer, DaprClient } from "dapr-client";
@@ -60,7 +60,6 @@ async function start() {
6060
server.actor.registerActor(ActorSayImp);
6161

6262
const actorId = "actor-id";
63-
const timerId = "actor-timer-id";
6463

6564
await server.startServer();
6665

0 commit comments

Comments
 (0)