From b7c33acbfd7b5b003325a4f1c9bc7d729ad11d03 Mon Sep 17 00:00:00 2001 From: kadmin Date: Fri, 7 Aug 2020 06:00:52 +0000 Subject: [PATCH] Add tracking issue #75243 --- library/core/src/array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,