diff --git a/Cargo.toml b/Cargo.toml index 86379b4..79d0488 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" authors = ["loloicci "] license = "MIT" -description = "Custom criterion measurement to get thropughts in the format [time]/[elements or bytes]" +description = "Custom criterion measurement to get thropughts in the format [time]/[element or byte]" repository = "https://github.com/loloicci/criterion-inverted-throughput" readme = "README.md" diff --git a/README.md b/README.md index 74a81d9..56ab87a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Criterion Inverted Throughput -Custom [criterion](https://github.com/bheisler/criterion.rs) measurement to get thropughts in the format `[time]/[elements or bytes]` +Custom [criterion](https://github.com/bheisler/criterion.rs) measurement to get thropughts in the format `[time]/[element or byte]` ## Description With deafult criterion config, result of [throughput measurement](https://bheisler.github.io/criterion.rs/book/user_guide/advanced_configuration.html#throughput-measurements) is printed like: diff --git a/src/lib.rs b/src/lib.rs index 02ba8d9..f015815 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ //! # Criterion Inverted Throughput -//! Custom [`criterion::measurement::Measurement`] to get throughputs in the format `[time]/[elements or bytes]`. +//! Custom [`criterion::measurement::Measurement`] to get throughputs in the format `[time]/[element or byte]`. //! //! ## Description //!