We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f24f3 commit a83fe96Copy full SHA for a83fe96
src/lexical/bhcomp.rs
@@ -75,13 +75,13 @@ where
75
76
// FLOAT OPS
77
78
-/// Calculate `b` from a a representation of `b` as a float.
+/// Calculate `b` from a representation of `b` as a float.
79
#[inline]
80
pub(super) fn b_extended<F: Float>(f: F) -> ExtendedFloat {
81
ExtendedFloat::from_float(f)
82
}
83
84
-/// Calculate `b+h` from a a representation of `b` as a float.
+/// Calculate `b+h` from a representation of `b` as a float.
85
86
pub(super) fn bh_extended<F: Float>(f: F) -> ExtendedFloat {
87
// None of these can overflow.
0 commit comments