Skip to content

Commit

Permalink
Rollup merge of #68266 - Stromberg90:patch-2, r=Dylan-DPC
Browse files Browse the repository at this point in the history
Changed docs for f32 and f64.
  • Loading branch information
Dylan-DPC committed Jan 16, 2020
2 parents 4d5e5a6 + d0db6d5 commit 90b9a62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/libstd/f32.rs
Expand Up @@ -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.
///
Expand Down Expand Up @@ -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
///
Expand Down
4 changes: 2 additions & 2 deletions src/libstd/f64.rs
Expand Up @@ -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.
///
Expand Down Expand Up @@ -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
///
Expand Down

0 comments on commit 90b9a62

Please sign in to comment.