diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs index 2c3eb44747..b529d213ae 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs @@ -13,7 +13,7 @@ internal static class WorkflowHelper /// Get a workflow that plays a number guessing game with human-in-the-loop interaction. /// An input port allows the external world to provide inputs to the workflow upon requests. /// - internal static ValueTask> GetWorkflowAsync() + internal static ValueTask> GetWorkflowAsync() { // Create the executors InputPort numberInputPort = InputPort.Create("GuessNumber"); @@ -24,7 +24,7 @@ internal static class WorkflowHelper .AddEdge(numberInputPort, judgeExecutor) .AddEdge(judgeExecutor, numberInputPort) .WithOutputFrom(judgeExecutor) - .BuildAsync(); + .BuildAsync(); } }