We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f544d8e commit 1ca2ca9Copy full SHA for 1ca2ca9
daprdocs/content/en/js-sdk-docs/js-actors/_index.md
@@ -101,7 +101,7 @@ const daprPort = "50000";
101
const client = new DaprClient(daprHost, daprPort);
102
103
// Create a new actor builder. It can be used to create multiple actors of a type.
104
-const builder = new ActorProxyBuilder<ParkingSensorInterface>(ActorSayImpl, client);
+const builder = new ActorProxyBuilder<ParkingSensorInterface>(ParkingSensorImpl, client);
105
106
// Create a new actor instance.
107
const actor = builder.build(new ActorId("my-actor"));
0 commit comments