Skip to content

Commit 3f337b3

Browse files
authored
Update f64.rs
1 parent 54b9616 commit 3f337b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/f64.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ impl f64 {
323323
unsafe { intrinsics::powf64(self, n) }
324324
}
325325

326-
/// Takes the square root of a number.
326+
/// Returns the square root of a number.
327327
///
328328
/// Returns NaN if `self` is a negative number.
329329
///
@@ -506,7 +506,7 @@ impl f64 {
506506
unsafe { cmath::fdim(self, other) }
507507
}
508508

509-
/// Takes the cubic root of a number.
509+
/// Returns the cubic root of a number.
510510
///
511511
/// # Examples
512512
///

0 commit comments

Comments
 (0)