Skip to content

Commit 60b16f1

Browse files
authored
Promote inclusive language. (#1360)
1 parent a480a08 commit 60b16f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/releasing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to release
22

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

src/benchmark_runner.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ IterationCount BenchmarkRunner::PredictNumItersNeeded(
244244
const IterationCount max_next_iters = static_cast<IterationCount>(
245245
std::lround(std::max(multiplier * static_cast<double>(i.iters),
246246
static_cast<double>(i.iters) + 1.0)));
247-
// But we do have *some* sanity limits though..
247+
// But we do have *some* limits though..
248248
const IterationCount next_iters = std::min(max_next_iters, kMaxIterations);
249249

250250
BM_VLOG(3) << "Next iters: " << next_iters << ", " << multiplier << "\n";
@@ -261,7 +261,7 @@ bool BenchmarkRunner::ShouldReportIterationResults(
261261
i.seconds >= min_time || // The elapsed time is large enough.
262262
// CPU time is specified but the elapsed real time greatly exceeds
263263
// the minimum time.
264-
// Note that user provided timers are except from this sanity check.
264+
// Note that user provided timers are except from this test.
265265
((i.results.real_time_used >= 5 * min_time) && !b.use_manual_time());
266266
}
267267

0 commit comments

Comments
 (0)