Merge pull request #1146 from haouvw/master

chore: remove repeat words
This commit is contained in:
David Tolnay 2024-06-26 04:18:05 -07:00 committed by GitHub
commit a9e089a2ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,13 +75,13 @@ where
// FLOAT OPS // FLOAT OPS
/// Calculate `b` from a a representation of `b` as a float. /// Calculate `b` from a representation of `b` as a float.
#[inline] #[inline]
pub(super) fn b_extended<F: Float>(f: F) -> ExtendedFloat { pub(super) fn b_extended<F: Float>(f: F) -> ExtendedFloat {
ExtendedFloat::from_float(f) 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] #[inline]
pub(super) fn bh_extended<F: Float>(f: F) -> ExtendedFloat { pub(super) fn bh_extended<F: Float>(f: F) -> ExtendedFloat {
// None of these can overflow. // None of these can overflow.