From a83fe96ae2a202925f1caa7abc51991f321d7c22 Mon Sep 17 00:00:00 2001 From: haouvw Date: Wed, 26 Jun 2024 15:29:16 +0800 Subject: [PATCH] chore: remove repeat words Signed-off-by: haouvw --- src/lexical/bhcomp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lexical/bhcomp.rs b/src/lexical/bhcomp.rs index 1f2a7bbde..e52b1c9b9 100644 --- a/src/lexical/bhcomp.rs +++ b/src/lexical/bhcomp.rs @@ -75,13 +75,13 @@ where // FLOAT OPS -/// Calculate `b` from a a representation of `b` as a float. +/// Calculate `b` from a representation of `b` as a float. #[inline] pub(super) fn b_extended(f: F) -> ExtendedFloat { ExtendedFloat::from_float(f) } -/// Calculate `b+h` from a a representation of `b` as a float. +/// Calculate `b+h` from a representation of `b` as a float. #[inline] pub(super) fn bh_extended(f: F) -> ExtendedFloat { // None of these can overflow.