From 37c786f137c9ae7647ce607646d946d9548c6973 Mon Sep 17 00:00:00 2001 From: dnlmlr <34707428+dnlmlr@users.noreply.github.com> Date: Thu, 31 Jul 2025 00:11:16 +0200 Subject: [PATCH] Fix typo - Fix typo "8-byte" to "8-bit" for the `u8` datatype --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 0e67162..8f2383d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -217,7 +217,7 @@ impl std::error::Error for Error {} /// Should be in `[0; 100)` range. The higher the number is - the higher /// the priority. /// -/// The only way to create such a value is a safe conversion from an 8-byte +/// The only way to create such a value is a safe conversion from an 8-bit /// unsigned integer ([`u8`]): /// /// ```rust