Rollup merge of #68266 - Stromberg90:patch-2, r=Dylan-DPC
Changed docs for f32 and f64.
This commit is contained in:
commit
90b9a627bf
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
///
|
||||
|
|
|
@ -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
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue