doc: cube root, not cubic root

Like we say square root, not quadratic root.
This commit is contained in:
Trevor Spiteri 2021-02-26 19:03:44 +01:00
parent cecdb181ad
commit dd502cb343
2 changed files with 2 additions and 2 deletions

View file

@ -503,7 +503,7 @@ impl f32 {
unsafe { cmath::fdimf(self, other) }
}
/// Returns the cubic root of a number.
/// Returns the cube root of a number.
///
/// # Examples
///

View file

@ -505,7 +505,7 @@ impl f64 {
unsafe { cmath::fdim(self, other) }
}
/// Returns the cubic root of a number.
/// Returns the cube root of a number.
///
/// # Examples
///