File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ impl f32 {
355
355
return unsafe { intrinsics:: powf32 ( self , n) } ;
356
356
}
357
357
358
- /// Takes the square root of a number.
358
+ /// Returns the square root of a number.
359
359
///
360
360
/// Returns NaN if `self` is a negative number.
361
361
///
@@ -564,7 +564,7 @@ impl f32 {
564
564
unsafe { cmath:: fdimf ( self , other) }
565
565
}
566
566
567
- /// Takes the cubic root of a number.
567
+ /// Returns the cubic root of a number.
568
568
///
569
569
/// # Examples
570
570
///
Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ impl f64 {
323
323
unsafe { intrinsics:: powf64 ( self , n) }
324
324
}
325
325
326
- /// Takes the square root of a number.
326
+ /// Returns the square root of a number.
327
327
///
328
328
/// Returns NaN if `self` is a negative number.
329
329
///
@@ -506,7 +506,7 @@ impl f64 {
506
506
unsafe { cmath:: fdim ( self , other) }
507
507
}
508
508
509
- /// Takes the cubic root of a number.
509
+ /// Returns the cubic root of a number.
510
510
///
511
511
/// # Examples
512
512
///
You can’t perform that action at this time.
0 commit comments