1
Fork 0

Rollup merge of #68266 - Stromberg90:patch-2, r=Dylan-DPC

Changed docs for f32 and f64.
This commit is contained in:
Dylan DPC 2020-01-16 11:58:07 +05:30 committed by GitHub
commit 90b9a627bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -355,7 +355,7 @@ impl f32 {
return unsafe { intrinsics::powf32(self, n) };
}
/// Takes the square root of a number.
/// Returns the square root of a number.
///
/// Returns NaN if `self` is a negative number.
///
@ -564,7 +564,7 @@ impl f32 {
unsafe { cmath::fdimf(self, other) }
}
/// Takes the cubic root of a number.
/// Returns the cubic root of a number.
///
/// # Examples
///

View file

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