diff --git a/library/core/src/iter/adapters/mod.rs b/library/core/src/iter/adapters/mod.rs index 3859d76ad5e2b..ba4050757cb94 100644 --- a/library/core/src/iter/adapters/mod.rs +++ b/library/core/src/iter/adapters/mod.rs @@ -51,7 +51,7 @@ pub use self::map_while::MapWhile; #[unstable(feature = "trusted_random_access", issue = "none")] pub use self::zip::TrustedRandomAccess; -#[unstable(feature = "iter_zip", issue = "none")] +#[unstable(feature = "iter_zip", issue = "83574")] pub use self::zip::zip; /// This trait provides transitive access to source-stage in an interator-adapter pipeline diff --git a/library/core/src/iter/adapters/zip.rs b/library/core/src/iter/adapters/zip.rs index ad630ba95b81e..2f8f504d8fcaa 100644 --- a/library/core/src/iter/adapters/zip.rs +++ b/library/core/src/iter/adapters/zip.rs @@ -55,7 +55,7 @@ impl Zip { /// println!("x:{}, y:{}, z:{}", x, y, z); /// } /// ``` -#[unstable(feature = "iter_zip", issue = "none")] +#[unstable(feature = "iter_zip", issue = "83574")] pub fn zip(a: A, b: B) -> Zip where A: IntoIterator, diff --git a/library/core/src/iter/mod.rs b/library/core/src/iter/mod.rs index 8d905feeb4940..2a179f0b1d77b 100644 --- a/library/core/src/iter/mod.rs +++ b/library/core/src/iter/mod.rs @@ -389,7 +389,7 @@ pub use self::traits::{ DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator, IntoIterator, Product, Sum, }; -#[unstable(feature = "iter_zip", issue = "none")] +#[unstable(feature = "iter_zip", issue = "83574")] pub use self::adapters::zip; #[stable(feature = "iter_cloned", since = "1.1.0")] pub use self::adapters::Cloned;