Skip to content

Commit

Permalink
Add tracking issue #75243
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianKnodt committed Aug 7, 2020
1 parent 664e456 commit b7c33ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl<T, const N: usize> [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<F, U>(self, mut f: F) -> [U; N]
where
F: FnMut(T) -> U,
Expand Down

0 comments on commit b7c33ac

Please sign in to comment.