about summary refs log tree commit diff
path: root/library/core/src/iter
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src/iter')
-rw-r--r--library/core/src/iter/mod.rs2
-rw-r--r--library/core/src/iter/sources.rs2
-rw-r--r--library/core/src/iter/sources/generator.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/iter/mod.rs b/library/core/src/iter/mod.rs
index b85841295da..7ca41d224a0 100644
--- a/library/core/src/iter/mod.rs
+++ b/library/core/src/iter/mod.rs
@@ -420,7 +420,7 @@ pub use self::adapters::{Intersperse, IntersperseWith};
     issue = "42168"
 )]
 pub use self::range::Step;
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 pub use self::sources::iter;
 #[stable(feature = "iter_empty", since = "1.2.0")]
 pub use self::sources::{Empty, empty};
diff --git a/library/core/src/iter/sources.rs b/library/core/src/iter/sources.rs
index fd9330201ff..8e27edb73c9 100644
--- a/library/core/src/iter/sources.rs
+++ b/library/core/src/iter/sources.rs
@@ -19,7 +19,7 @@ pub use self::empty::{Empty, empty};
 pub use self::from_coroutine::{FromCoroutine, from_coroutine};
 #[stable(feature = "iter_from_fn", since = "1.34.0")]
 pub use self::from_fn::{FromFn, from_fn};
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 pub use self::generator::iter;
 #[stable(feature = "iter_once", since = "1.2.0")]
 pub use self::once::{Once, once};
diff --git a/library/core/src/iter/sources/generator.rs b/library/core/src/iter/sources/generator.rs
index 0846974d526..94d501de033 100644
--- a/library/core/src/iter/sources/generator.rs
+++ b/library/core/src/iter/sources/generator.rs
@@ -18,7 +18,7 @@
 /// let v: Vec<_> = it.collect();
 /// assert_eq!(v, [1, 2, 3]);
 /// ```
-#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
+#[unstable(feature = "iter_macro", issue = "142269", reason = "generators are unstable")]
 #[allow_internal_unstable(coroutines, iter_from_coroutine)]
 #[rustc_builtin_macro]
 pub macro iter($($t:tt)*) {