diff --git a/src/BenchmarkDotNet/Toolchains/DotNetCli/DotNetCliCommandExecutor.cs b/src/BenchmarkDotNet/Toolchains/DotNetCli/DotNetCliCommandExecutor.cs index 6d7caab82a..497fd5a921 100644 --- a/src/BenchmarkDotNet/Toolchains/DotNetCli/DotNetCliCommandExecutor.cs +++ b/src/BenchmarkDotNet/Toolchains/DotNetCli/DotNetCliCommandExecutor.cs @@ -31,7 +31,7 @@ public static DotNetCliCommandResult Execute(DotNetCliCommand parameters) if (!process.WaitForExit((int)parameters.Timeout.TotalMilliseconds)) { - parameters.Logger.WriteLineError($"// command took more that the timeout: {parameters.Timeout.TotalSeconds:0.##}s. Killing the process tree!"); + parameters.Logger.WriteLineError($"// command took more than the timeout: {parameters.Timeout.TotalSeconds:0.##}s. Killing the process tree!"); outputReader.CancelRead(); process.KillTree(); @@ -101,4 +101,4 @@ internal static ProcessStartInfo BuildStartInfo(string customDotNetCliPath, stri return startInfo; } } -} \ No newline at end of file +}