Skip to content

Commit 525d760

Browse files
committed
Change tracking issue
1 parent d8e247e commit 525d760

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ impl f32 {
901901
///
902902
/// [finite]: #method.is_finite
903903
#[must_use = "method returns a new number and does not mutate the original value"]
904-
#[unstable(feature = "float_interpolation", issue = "71015")]
904+
#[unstable(feature = "float_interpolation", issue = "86269")]
905905
pub fn lerp(self, start: f32, end: f32) -> f32 {
906906
// consistent
907907
if start == end {

library/std/src/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ impl f64 {
903903
///
904904
/// [finite]: #method.is_finite
905905
#[must_use = "method returns a new number and does not mutate the original value"]
906-
#[unstable(feature = "float_interpolation", issue = "71015")]
906+
#[unstable(feature = "float_interpolation", issue = "86269")]
907907
pub fn lerp(self, start: f64, end: f64) -> f64 {
908908
// consistent
909909
if start == end {

0 commit comments

Comments
 (0)