From 2909b0bac6bce0316ae5d7a62edc819c8b9d1173 Mon Sep 17 00:00:00 2001 From: keienWang <42377006+keienWang@users.noreply.github.com> Date: Fri, 26 Jan 2024 22:00:51 +0800 Subject: [PATCH] fix: Correct spelling error Fixed a spelling error in the second paragraph of the README file. - Changed "exponet" to "exponent" --- src/lexical/num.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lexical/num.rs b/src/lexical/num.rs index e47e00341..af10afd7a 100644 --- a/src/lexical/num.rs +++ b/src/lexical/num.rs @@ -223,7 +223,7 @@ pub trait Float: Number { const NEGATIVE_INFINITY_BITS: Self::Unsigned; /// Size of the significand (mantissa) without hidden bit. const MANTISSA_SIZE: i32; - /// Bias of the exponet + /// Bias of the exponent const EXPONENT_BIAS: i32; /// Exponent portion of a denormal float. const DENORMAL_EXPONENT: i32;