We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b9616 commit 3f337b3Copy full SHA for 3f337b3
src/libstd/f64.rs
@@ -323,7 +323,7 @@ impl f64 {
323
unsafe { intrinsics::powf64(self, n) }
324
}
325
326
- /// Takes the square root of a number.
+ /// Returns the square root of a number.
327
///
328
/// Returns NaN if `self` is a negative number.
329
@@ -506,7 +506,7 @@ impl f64 {
506
unsafe { cmath::fdim(self, other) }
507
508
509
- /// Takes the cubic root of a number.
+ /// Returns the cubic root of a number.
510
511
/// # Examples
512
0 commit comments