Skip to content

Commit e37c021

Browse files
Fix typo in log message (#1426)
Fix typo in log message when command times out.
1 parent 9c0f523 commit e37c021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BenchmarkDotNet/Toolchains/DotNetCli/DotNetCliCommandExecutor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static DotNetCliCommandResult Execute(DotNetCliCommand parameters)
3131

3232
if (!process.WaitForExit((int)parameters.Timeout.TotalMilliseconds))
3333
{
34-
parameters.Logger.WriteLineError($"// command took more that the timeout: {parameters.Timeout.TotalSeconds:0.##}s. Killing the process tree!");
34+
parameters.Logger.WriteLineError($"// command took more than the timeout: {parameters.Timeout.TotalSeconds:0.##}s. Killing the process tree!");
3535

3636
outputReader.CancelRead();
3737
process.KillTree();
@@ -101,4 +101,4 @@ internal static ProcessStartInfo BuildStartInfo(string customDotNetCliPath, stri
101101
return startInfo;
102102
}
103103
}
104-
}
104+
}

0 commit comments

Comments
 (0)