diff --git a/src/Spectre.Console/Widgets/Progress/Status.cs b/src/Spectre.Console/Widgets/Progress/Status.cs index 57392cc..688cd33 100644 --- a/src/Spectre.Console/Widgets/Progress/Status.cs +++ b/src/Spectre.Console/Widgets/Progress/Status.cs @@ -39,7 +39,7 @@ namespace Spectre.Console /// Starts a new status display. /// /// The status to display. - /// he action to execute. + /// The action to execute. public void Start(string status, Action action) { var task = StartAsync(status, ctx => @@ -56,7 +56,7 @@ namespace Spectre.Console /// /// The result type. /// The status to display. - /// he action to execute. + /// The action to execute. /// The result. public T Start(string status, Func func) { @@ -68,7 +68,7 @@ namespace Spectre.Console /// Starts a new status display. /// /// The status to display. - /// he action to execute. + /// The action to execute. /// A representing the asynchronous operation. public async Task StartAsync(string status, Func action) { @@ -89,7 +89,7 @@ namespace Spectre.Console /// /// The result type of task. /// The status to display. - /// he action to execute. + /// The action to execute. /// A representing the asynchronous operation. public async Task StartAsync(string status, Func> func) {