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.
2 parents 88549fd + c679895 commit aefab93Copy full SHA for aefab93
articles/azure-functions/durable/durable-functions-overview.md
@@ -374,7 +374,7 @@ public static void Counter([EntityTrigger] IDurableEntityContext ctx)
374
{
375
case "add":
376
int amount = ctx.GetInput<int>();
377
- currentValue += operand;
+ currentValue += amount;
378
break;
379
case "reset":
380
currentValue = 0;
@@ -466,4 +466,4 @@ Because Durable Functions is an advanced extension for [Azure Functions](../func
466
## Next steps
467
468
> [!div class="nextstepaction"]
469
-> [Durable Functions function types and features](durable-functions-types-features-overview.md)
+> [Durable Functions function types and features](durable-functions-types-features-overview.md)
0 commit comments