From 84b5b1c8c51f6b2a9804911ece0e50f78be0f954 Mon Sep 17 00:00:00 2001 From: xdefago Date: Sun, 7 Apr 2024 15:37:42 +0900 Subject: [PATCH] test: fix spell in benchmarks --- benches/bench_mean_ci.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/bench_mean_ci.rs b/benches/bench_mean_ci.rs index 34d8441..d384192 100644 --- a/benches/bench_mean_ci.rs +++ b/benches/bench_mean_ci.rs @@ -33,7 +33,7 @@ fn bench_mean_category(c: &mut Criterion) { let mut rng = rand::thread_rng(); let confidence = Confidence::new_two_sided(0.95); - let mut group = c.benchmark_group("mean::*::ci (Artihmetic, Harmonic, Geometric)"); + let mut group = c.benchmark_group("mean::*::ci (Arithmetic, Harmonic, Geometric)"); for size in [100_000] { let data = (0..size).map(|_| rng.gen::()).collect::>();