Skip to content

Commit c681179

Browse files
committed
Address feedback
1 parent 1530655 commit c681179

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/OrchardCore/OrchardCore.Setup.Abstractions/Events/ISetupEventHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ namespace OrchardCore.Setup.Events;
99
public interface ISetupEventHandler
1010
{
1111
/// <summary>
12-
/// Performs asynchronous setup operations using the specified context.
12+
/// Occurs during the setup operation.
1313
/// </summary>
1414
/// <param name="context">An object that provides configuration and state information required for the setup process. Cannot be null.</param>
1515
/// <returns>A task that represents the asynchronous setup operation.</returns>
1616
Task SetupAsync(SetupContext context) => Task.CompletedTask;
1717

1818
/// <summary>
19-
/// Marks the setup operation as failed within the provided context.
19+
/// Occurs when the setup operation failed.
2020
/// </summary>
2121
/// <param name="context">The setup context in which the failure is recorded. Cannot be null.</param>
2222
/// <returns>A completed task that represents the asynchronous operation.</returns>
2323
Task FailedAsync(SetupContext context) => Task.CompletedTask;
2424

2525
/// <summary>
26-
/// Returns a completed task that represents a successful asynchronous operation.
26+
/// Occurs when the setup operation is succeed.
2727
/// </summary>
2828
/// <returns>A <see cref="Task"/> that has already completed successfully.</returns>
2929
Task SucceededAsync() => Task.CompletedTask;

0 commit comments

Comments
 (0)