Skip to content

Commit 8b37259

Browse files
committed
Added reference to tracking issue
1 parent baa5e47 commit 8b37259

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 z = x.zip(y);
480480
/// assert_eq!(z, [(1, 4), (2, 5), (3, 6)]);
481481
/// ```
482-
#[unstable(feature = "array_zip", issue = "none")]
482+
#[unstable(feature = "array_zip", issue = "80094")]
483483
pub fn zip<U>(self, rhs: [U; N]) -> [(T, U); N] {
484484
use crate::mem::MaybeUninit;
485485

0 commit comments

Comments
 (0)