From fb31a209d479ca0b4794f4e4878b9e0bc14a4967 Mon Sep 17 00:00:00 2001 From: christiansita Date: Tue, 4 Aug 2026 09:33:06 +0200 Subject: [PATCH] Fix typo error in human-in-the-loop.md Fixed typo error text in the Handling Requests and Responses section. --- agent-framework/workflows/human-in-the-loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-framework/workflows/human-in-the-loop.md b/agent-framework/workflows/human-in-the-loop.md index a2ba8fce..f9569232 100644 --- a/agent-framework/workflows/human-in-the-loop.md +++ b/agent-framework/workflows/human-in-the-loop.md @@ -189,7 +189,7 @@ A `RequestPort` defines a typed request/response channel between the workflow an ::: zone pivot="programming-language-csharp" -An `RequestPort` emits a `RequestInfoEvent` when it receives a request. You can subscribe to these events to handle incoming requests from the workflow. When you receive a response from an external system, send it back to the workflow using the response mechanism. The framework automatically routes the response to the executor that sent the original request. +A `RequestPort` emits a `RequestInfoEvent` when it receives a request. You can subscribe to these events to handle incoming requests from the workflow. When you receive a response from an external system, send it back to the workflow using the response mechanism. The framework automatically routes the response to the executor that sent the original request. ```csharp await using StreamingRun handle = await InProcessExecution.RunStreamingAsync(workflow, NumberSignal.Init);