1
Fork 0

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -323,7 +323,7 @@ impl f64 {
unsafe { intrinsics::powf64(self, n) } 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. /// Returns NaN if `self` is a negative number.
/// ///
@ -506,7 +506,7 @@ impl f64 {
unsafe { cmath::fdim(self, other) } unsafe { cmath::fdim(self, other) }
} }
/// Takes the cubic root of a number. /// Returns the cubic root of a number.
/// ///
/// # Examples /// # Examples
/// ///