Skip to content

Commit 1ca2ca9

Browse files
committed
Fix actor implementation name
Signed-off-by: Shubham Sharma <[email protected]>
1 parent f544d8e commit 1ca2ca9

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const daprPort = "50000";
101101
const client = new DaprClient(daprHost, daprPort);
102102

103103
// Create a new actor builder. It can be used to create multiple actors of a type.
104-
const builder = new ActorProxyBuilder<ParkingSensorInterface>(ActorSayImpl, client);
104+
const builder = new ActorProxyBuilder<ParkingSensorInterface>(ParkingSensorImpl, client);
105105

106106
// Create a new actor instance.
107107
const actor = builder.build(new ActorId("my-actor"));

0 commit comments

Comments
 (0)