diff --git a/src/System.Management.Automation/utils/PowerShellExecutionHelper.cs b/src/System.Management.Automation/utils/PowerShellExecutionHelper.cs index dcfc2682bcd..87e5c6b8742 100644 --- a/src/System.Management.Automation/utils/PowerShellExecutionHelper.cs +++ b/src/System.Management.Automation/utils/PowerShellExecutionHelper.cs @@ -116,7 +116,7 @@ internal Collection ExecuteCommand(string command, bool isScript, out // results = this.ExecuteCommand(cmd); // If this pipeline has been stopped lets set a flag to cancel all future tab completion calls - // untill the next completion + // until the next completion if (IsStopped) { results = new Collection(); @@ -147,7 +147,7 @@ internal Collection ExecuteCurrentPowerShell(out Exception exceptionTh results = CurrentPowerShell.Invoke(input); // If this pipeline has been stopped lets set a flag to cancel all future tab completion calls - // untill the next completion + // until the next completion if (IsStopped) { results = new Collection();