Skip to content

Commit aefab93

Browse files
authored
Merge pull request #88801 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 88549fd + c679895 commit aefab93

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)