Update f64.rs

This commit is contained in:
Strømberg
2020-01-16 03:34:23 +01:00
committed by GitHub
parent 54b961658b
commit 3f337b312d
+2 -2
View File
@@ -323,7 +323,7 @@ pub fn powf(self, n: f64) -> f64 {
unsafe { intrinsics::powf64(self, n) }
}
/// Takes the square root of a number.
/// Returns the square root of a number.
///
/// Returns NaN if `self` is a negative number.
///
@@ -506,7 +506,7 @@ pub fn abs_sub(self, other: f64) -> f64 {
unsafe { cmath::fdim(self, other) }
}
/// Takes the cubic root of a number.
/// Returns the cubic root of a number.
///
/// # Examples
///