Skip to content

Commit a8cb003

Browse files
Merge pull request #39052 from pedroreys/patch-1
Fix typo in _Durable Entity Function_ example.
2 parents b237a80 + 23befa8 commit a8cb003

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ public static void Counter([EntityTrigger] IDurableEntityContext ctx)
374374
{
375375
case "add":
376376
int amount = ctx.GetInput<int>();
377-
currentValue += operand;
377+
currentValue += amount;
378378
break;
379379
case "reset":
380380
currentValue = 0;
@@ -466,4 +466,4 @@ Because Durable Functions is an advanced extension for [Azure Functions](../func
466466
## Next steps
467467

468468
> [!div class="nextstepaction"]
469-
> [Durable Functions function types and features](durable-functions-types-features-overview.md)
469+
> [Durable Functions function types and features](durable-functions-types-features-overview.md)

0 commit comments

Comments
 (0)