diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 16baef137cbe2..09dd4604360f8 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -377,7 +377,7 @@ impl [T; N] { /// let y = x.map(|v| v + 1); /// assert_eq!(y, [2, 3, 4]); /// ``` - #[unstable(feature = "array_map", issue = "77777")] + #[unstable(feature = "array_map", issue = "75027")] pub fn map(self, mut f: F) -> [U; N] where F: FnMut(T) -> U,