From cfb4a9b8b0b4601f9205906d79e8408107442a2c Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk <21087696+oleksandr-pavlyk@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:58:15 -0600 Subject: [PATCH] Fix for comment grammar --- nvbench/benchmark_base.cuh | 2 +- nvbench/state.cuh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nvbench/benchmark_base.cuh b/nvbench/benchmark_base.cuh index 0ed901e..be63174 100644 --- a/nvbench/benchmark_base.cuh +++ b/nvbench/benchmark_base.cuh @@ -185,7 +185,7 @@ struct benchmark_base /// If true, the batched measurements for benchmark are not run. This is intended for use to /// save resources when only non-batched measurements are of interest, although batched - /// measurements are meaningful and code to exercise them is compiled. This option has not + /// measurements are meaningful and code to exercise them is compiled. This option has no /// effect for CPU only benchmarks and for benchmarks tagged with no_batch tag. @{ [[nodiscard]] bool get_skip_batched() const { return m_skip_batched; } benchmark_base &set_skip_batched(bool v) diff --git a/nvbench/state.cuh b/nvbench/state.cuh index 084324f..d815df7 100644 --- a/nvbench/state.cuh +++ b/nvbench/state.cuh @@ -163,7 +163,7 @@ struct state /// If true, the batched measurements of benchmark are not run. This is intended for use to /// save resources when only non-batched measurements are of interest, although batched - /// measurements are meaningful and code to exercise them is compiled. This option has not + /// measurements are meaningful and code to exercise them is compiled. This option has no /// effect for CPU only benchmarks and for benchmarks tagged with no_batch tag. @{ [[nodiscard]] bool get_skip_batched() const { return m_skip_batched; } void set_skip_batched(bool v) { m_skip_batched = v; }