From f0615337ee2d7950c94ad348e6c43edb83e43cf8 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Tue, 26 Nov 2024 20:37:07 +0100 Subject: [PATCH] Update activity reference in XML comments Corrected the activity reference from DispatchWorkflow to ExecuteWorkflow in XML comments to accurately reflect the functionality. This change ensures the comments are aligned with the actual code behavior. --- .../Handlers/ResumeExecuteWorkflowActivity.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/Elsa.Workflows.Runtime/Handlers/ResumeExecuteWorkflowActivity.cs b/src/modules/Elsa.Workflows.Runtime/Handlers/ResumeExecuteWorkflowActivity.cs index 9d4912d38..256621e0b 100644 --- a/src/modules/Elsa.Workflows.Runtime/Handlers/ResumeExecuteWorkflowActivity.cs +++ b/src/modules/Elsa.Workflows.Runtime/Handlers/ResumeExecuteWorkflowActivity.cs @@ -5,12 +5,11 @@ using Elsa.Workflows.Runtime.Activities; using Elsa.Workflows.Runtime.Options; using Elsa.Workflows.Runtime.Stimuli; using JetBrains.Annotations; -using Microsoft.Extensions.Logging; namespace Elsa.Workflows.Runtime.Handlers; /// -/// Resumes any blocking activities when its child workflow completes. +/// Resumes any blocking activities when its child workflow completes. /// [PublicAPI] internal class ResumeExecuteWorkflowActivity(IBookmarkQueue bookmarkQueue, IStimulusHasher stimulusHasher) : INotificationHandler