Skip to content

Commit b7c33ac

Browse files
committed
Add tracking issue #75243
1 parent 664e456 commit b7c33ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/array/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ impl<T, const N: usize> [T; N] {
377377
/// let y = x.map(|v| v + 1);
378378
/// assert_eq!(y, [2, 3, 4]);
379379
/// ```
380-
#[unstable(feature = "array_map", issue = "77777")]
380+
#[unstable(feature = "array_map", issue = "75027")]
381381
pub fn map<F, U>(self, mut f: F) -> [U; N]
382382
where
383383
F: FnMut(T) -> U,

0 commit comments

Comments
 (0)