From c040d1b205eb126e872e44d0e102f382e6934ffb Mon Sep 17 00:00:00 2001 From: wackbyte Date: Mon, 23 Oct 2023 14:11:33 -0400 Subject: [PATCH] Fix typo: "troughput" -> "throughput" --- Cargo.toml | 2 +- benches/{troughput.rs => throughput.rs} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename benches/{troughput.rs => throughput.rs} (99%) diff --git a/Cargo.toml b/Cargo.toml index 6be6e79..34ba90e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ codegen-units = 1 # debug = true # for profiling [[bench]] -name = "troughput" +name = "throughput" harness = false [workspace] diff --git a/benches/troughput.rs b/benches/throughput.rs similarity index 99% rename from benches/troughput.rs rename to benches/throughput.rs index 3af56f9..dd90364 100644 --- a/benches/troughput.rs +++ b/benches/throughput.rs @@ -108,7 +108,7 @@ const _: () = const_panic::concat_assert!( ); fn bench(c: &mut Criterion) { - let mut group = c.benchmark_group("Troughput"); + let mut group = c.benchmark_group("Throughput"); use rand::SeedableRng; let mut rng = rand::rngs::StdRng::seed_from_u64(1234);