Skip to content

Commit 31d7344

Browse files
authored
Fix typo in signalEntity client sample function
Resolves https://github.com/MicrosoftDocs/azure-docs/issues/44739.
1 parent d9adfd1 commit 31d7344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const df = require("durable-functions");
182182
module.exports = async function (context) {
183183
const client = df.getClient(context);
184184
const entityId = new df.EntityId("Counter", "myCounter");
185-
await context.df.signalEntity(entityId, "add", 1);
185+
await client.signalEntity(entityId, "add", 1);
186186
};
187187
```
188188

0 commit comments

Comments
 (0)