Promote inclusive language. (#1360)

This commit is contained in:
Brad Messer 2022-03-18 11:59:31 -04:00 committed by GitHub
parent a480a088fe
commit 60b16f11a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# How to release
* Make sure you're on main and synced to HEAD
* Ensure the project builds and tests run (sanity check only, obviously)
* Ensure the project builds and tests run
* `parallel -j0 exec ::: test/*_test` can help ensure everything at least
passes
* Prepare release notes

View File

@ -244,7 +244,7 @@ IterationCount BenchmarkRunner::PredictNumItersNeeded(
const IterationCount max_next_iters = static_cast<IterationCount>(
std::lround(std::max(multiplier * static_cast<double>(i.iters),
static_cast<double>(i.iters) + 1.0)));
// But we do have *some* sanity limits though..
// But we do have *some* limits though..
const IterationCount next_iters = std::min(max_next_iters, kMaxIterations);
BM_VLOG(3) << "Next iters: " << next_iters << ", " << multiplier << "\n";
@ -261,7 +261,7 @@ bool BenchmarkRunner::ShouldReportIterationResults(
i.seconds >= min_time || // The elapsed time is large enough.
// CPU time is specified but the elapsed real time greatly exceeds
// the minimum time.
// Note that user provided timers are except from this sanity check.
// Note that user provided timers are except from this test.
((i.results.real_time_used >= 5 * min_time) && !b.use_manual_time());
}