Skip to content

Commit c86a25d

Browse files
authored
Update durable-functions-bindings.md
Fix of issue #7527
1 parent 33d5c33 commit c86a25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Most orchestrator functions call activity functions, so here is a "Hello World"
8888
public static async Task<string> Run(
8989
[OrchestrationTrigger] DurableOrchestrationContext context)
9090
{
91-
string name = await context.GetInput<string>();
91+
string name = context.GetInput<string>();
9292
string result = await context.CallActivityAsync<string>("SayHello", name);
9393
return result;
9494
}

0 commit comments

Comments
 (0)