diff options
Diffstat (limited to 'cli/tools')
-rw-r--r-- | cli/tools/bench/reporters.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/bench/reporters.rs b/cli/tools/bench/reporters.rs index 68788bc96..35b4a229c 100644 --- a/cli/tools/bench/reporters.rs +++ b/cli/tools/bench/reporters.rs @@ -237,7 +237,7 @@ impl BenchReporter for ConsoleReporter { ); if !stats.high_precision && stats.used_explicit_timers { - println!("{}", colors::yellow(format!("Warning: start() and end() calls in \"{}\" are ignored because it averages less\nthan 0.01s per iteration. Remove them for better results.", &desc.name))); + println!("{}", colors::yellow(format!("Warning: start() and end() calls in \"{}\" are ignored because it averages less\nthan 10µs per iteration. Remove them for better results.", &desc.name))); } self.group_measurements.push((desc, stats.clone())); |