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.