Skip to content

Commit 14ad150

Browse files
committed
Typo fix - update to guide for running C# Azure Functions in an isolated worker process article
Change (... a message queue named `myqueue-output` by using an output binding...) to (... queue named `output-queue` by using...). This change queue name to match [code example](~/azure-functions-dotnet-worker/samples/Extensions/Queue/QueueFunction.cs).
1 parent 573400a commit 14ad150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ A function can have zero or more input bindings that can pass data to a function
196196

197197
### Output bindings
198198

199-
To write to an output binding, you must apply an output binding attribute to the function method, which defined how to write to the bound service. The value returned by the method is written to the output binding. For example, the following example writes a string value to a message queue named `myqueue-output` by using an output binding:
199+
To write to an output binding, you must apply an output binding attribute to the function method, which defined how to write to the bound service. The value returned by the method is written to the output binding. For example, the following example writes a string value to a message queue named `output-queue` by using an output binding:
200200

201201
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/Queue/QueueFunction.cs" id="docsnippet_queue_output_binding" :::
202202

0 commit comments

Comments
 (0)