diff --git a/src/Core/src/Dispatching/DispatcherExtensions.cs b/src/Core/src/Dispatching/DispatcherExtensions.cs index baf32e8a5cf5..e07e680ef23f 100644 --- a/src/Core/src/Dispatching/DispatcherExtensions.cs +++ b/src/Core/src/Dispatching/DispatcherExtensions.cs @@ -41,7 +41,7 @@ public static Task DispatchAsync(this IDispatcher dispatcher, Func func /// /// The instance this method is called on. /// The method to be executed by the dispatcher. - /// if the operation in was dispatched successfully, otherwise . + /// . public static Task DispatchAsync(this IDispatcher dispatcher, Action action) => dispatcher.DispatchAsync(() => { @@ -81,7 +81,7 @@ public static Task DispatchAsync(this IDispatcher dispatcher, Func /// /// The instance this method is called on. /// The function to be executed by the dispatcher. - /// if the operation in was dispatched successfully, otherwise . + /// . public static Task DispatchAsync(this IDispatcher dispatcher, Func funcTask) => dispatcher.DispatchAsync(async () => { @@ -125,4 +125,4 @@ void OnTick(object? sender, EventArgs e) } } } -} \ No newline at end of file +}