From bc4e8c365d154b6a2939264e92ec22551eac24d6 Mon Sep 17 00:00:00 2001 From: viordash <36102143+viordash@users.noreply.github.com> Date: Sun, 10 Sep 2023 23:55:37 +0300 Subject: [PATCH] fix copypaste --- src/include/nanobench.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/nanobench.h b/src/include/nanobench.h index d233dcc..3141098 100644 --- a/src/include/nanobench.h +++ b/src/include/nanobench.h @@ -3260,7 +3260,7 @@ std::chrono::nanoseconds Bench::maxEpochTime() const noexcept { return mConfig.mMaxEpochTime; } -// Sets the maximum time each epoch should take. Default is 100ms. +// Sets the minimum time each epoch should take. Default is 1ms. Bench& Bench::minEpochTime(std::chrono::nanoseconds t) noexcept { mConfig.mMinEpochTime = t; return *this;