about summary refs log tree commit diff
diff options
context:
space:
mode:
authorltdk <usr@ltdk.xyz>2021-06-13 14:04:43 -0400
committerltdk <usr@ltdk.xyz>2021-06-13 14:04:43 -0400
commit525d76026fe855f6a9de4604d9fee50d974994a3 (patch)
tree83ec154e60e8b7a4890b86138aa95f46b095f608
parentd8e247e38c9ce6746a595d374cf260b46ac54f27 (diff)
downloadrust-525d76026fe855f6a9de4604d9fee50d974994a3.tar.gz
rust-525d76026fe855f6a9de4604d9fee50d974994a3.zip
Change tracking issue
-rw-r--r--library/std/src/f32.rs2
-rw-r--r--library/std/src/f64.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/f32.rs b/library/std/src/f32.rs
index 00cab72564f..21bd79611a5 100644
--- a/library/std/src/f32.rs
+++ b/library/std/src/f32.rs
@@ -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 {
diff --git a/library/std/src/f64.rs b/library/std/src/f64.rs
index ff41f999dd5..8c8cf73741b 100644
--- a/library/std/src/f64.rs
+++ b/library/std/src/f64.rs
@@ -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 {