Skip to content

Commit 0ff2022

Browse files
committed
Use correct link to issue
1 parent 5941ed2 commit 0ff2022

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
@@ -479,7 +479,7 @@ impl<T, const N: usize> [T; N] {
479479
/// let b = a.try_map(|v| v.parse::<u32>());
480480
/// assert!(b.is_err());
481481
/// ```
482-
#[unstable(feature = "array_try_map", issue = "75243")]
482+
#[unstable(feature = "array_try_map", issue = "79711")]
483483
pub fn try_map<F, R, E, U>(self, mut f: F) -> Result<[U; N], E>
484484
where
485485
F: FnMut(T) -> R,

0 commit comments

Comments
 (0)