Skip to content

Commit

Permalink
Updating Workflow XML comment for accuracy (dapr#1260)
Browse files Browse the repository at this point in the history
Signed-off-by: Whit Waldo <[email protected]>
Co-authored-by: Phillip Hoff <[email protected]>
Signed-off-by: Divya Perumal <[email protected]>
  • Loading branch information
2 people authored and Divya Perumal committed Dec 10, 2024
1 parent 4fbfe71 commit 2986d41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Dapr.Workflow/WorkflowContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@ public abstract Task<TResult> CallChildWorkflowAsync<TResult>(
/// exception will be surfaced to the parent workflow, just like it is when an activity task fails with an
/// exception. Child workflows also support automatic retry policies.
/// </para><para>
/// Because child workflows are independent of their parents, terminating a parent workflow does not affect
/// any child workflows. You must terminate each child workflow independently using its instance ID, which
/// is specified by <see cref="ChildWorkflowTaskOptions.InstanceId" />.
/// Terminating a parent workflow terminates all the child workflows created by the workflow instance. See the documentation at
/// https://docs.dapr.io/developing-applications/building-blocks/workflow/workflow-features-concepts/#child-workflows regarding
/// the terminate workflow API for more information.
/// </para>
/// </remarks>
/// <param name="workflowName">The name of the workflow to call.</param>
Expand Down

0 comments on commit 2986d41

Please sign in to comment.