From 9293f78ae65efeb21165a9a586fe0e203f5f479c Mon Sep 17 00:00:00 2001 From: lazymio Date: Sun, 16 Jun 2024 23:00:23 +0800 Subject: [PATCH] Fix typos --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 55e4c02..cc7c51d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -216,7 +216,7 @@ impl Uint { /// /// Panics it `LIMBS` is not equal to `nlimbs(BITS)`. /// - /// Panics if the value is to large for the bit-size of the Uint. + /// Panics if the value is too large for the bit-size of the Uint. #[inline(always)] #[must_use] #[track_caller] @@ -235,7 +235,7 @@ impl Uint { /// /// # Panics /// - /// Panics if the value is to large for the bit-size of the Uint. + /// Panics if the value is too large for the bit-size of the Uint. #[inline] #[must_use] #[track_caller]