Skip to content

Commit

Permalink
Added reference to tracking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
usbalbin committed Dec 16, 2020
1 parent baa5e47 commit 8b37259
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 @@ -479,7 +479,7 @@ impl<T, const N: usize> [T; N] {
/// let z = x.zip(y);
/// assert_eq!(z, [(1, 4), (2, 5), (3, 6)]);
/// ```
#[unstable(feature = "array_zip", issue = "none")]
#[unstable(feature = "array_zip", issue = "80094")]
pub fn zip<U>(self, rhs: [U; N]) -> [(T, U); N] {
use crate::mem::MaybeUninit;

Expand Down

0 comments on commit 8b37259

Please sign in to comment.