chore: remove repeat words

Signed-off-by: haouvw <jchaodaohang@foxmail.com>
This commit is contained in:
haouvw 2024-06-26 15:29:16 +08:00
parent c4f24f3be2
commit a83fe96ae2

View File

@ -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: Float>(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: Float>(f: F) -> ExtendedFloat {
// None of these can overflow.