From 6d2eb3339127da256dedd98e25042109b6b13877 Mon Sep 17 00:00:00 2001
From: Peter Jaszkowiak
Date: Sat, 3 May 2025 23:03:47 -0600
Subject: [PATCH] fix a couple unstable attributes
---
library/core/src/range/iter.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/library/core/src/range/iter.rs b/library/core/src/range/iter.rs
index 24efd4a204a5..8d301f4799b8 100644
--- a/library/core/src/range/iter.rs
+++ b/library/core/src/range/iter.rs
@@ -168,7 +168,7 @@ impl IterRangeInclusive {
}
}
-#[unstable(feature = "trusted_random_access", issue = "none")]
+#[unstable(feature = "new_range_api", issue = "125687")]
impl Iterator for IterRangeInclusive {
type Item = A;
@@ -302,7 +302,7 @@ impl IterRangeFrom {
}
}
-#[unstable(feature = "trusted_random_access", issue = "none")]
+#[unstable(feature = "new_range_api", issue = "125687")]
impl Iterator for IterRangeFrom {
type Item = A;