Skip to content

Commit

Permalink
Change tracking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
clarfonthey committed Jun 13, 2021
1 parent d8e247e commit 525d760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/std/src/f32.rs
Expand Up @@ -901,7 +901,7 @@ impl f32 {
///
/// [finite]: #method.is_finite
#[must_use = "method returns a new number and does not mutate the original value"]
#[unstable(feature = "float_interpolation", issue = "71015")]
#[unstable(feature = "float_interpolation", issue = "86269")]
pub fn lerp(self, start: f32, end: f32) -> f32 {
// consistent
if start == end {
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/f64.rs
Expand Up @@ -903,7 +903,7 @@ impl f64 {
///
/// [finite]: #method.is_finite
#[must_use = "method returns a new number and does not mutate the original value"]
#[unstable(feature = "float_interpolation", issue = "71015")]
#[unstable(feature = "float_interpolation", issue = "86269")]
pub fn lerp(self, start: f64, end: f64) -> f64 {
// consistent
if start == end {
Expand Down

0 comments on commit 525d760

Please sign in to comment.