[libc][NFC] Fix typo in milliseconds

This commit is contained in:
Alex Brachet 2020-03-22 15:11:22 -04:00
parent 78957bab55
commit 0e1e9b9a81
1 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ bool Test::testProcessKilled(RunContext &Ctx, testutils::FunctionCaller *Func,
if (Result.timedOut()) {
Ctx.markFail();
llvm::outs() << File << ":" << Line << ": FAILURE\n"
<< "Process timed out after " << 500 << " miliseconds.\n";
<< "Process timed out after " << 500 << " milliseconds.\n";
return false;
}
@ -305,7 +305,7 @@ bool Test::testProcessExits(RunContext &Ctx, testutils::FunctionCaller *Func,
if (Result.timedOut()) {
Ctx.markFail();
llvm::outs() << File << ":" << Line << ": FAILURE\n"
<< "Process timed out after " << 500 << " miliseconds.\n";
<< "Process timed out after " << 500 << " milliseconds.\n";
return false;
}