Skip to content

Commit ab2c590

Browse files
committed
Added tracking issue to unstable attribute
1 parent 9d8081e commit ab2c590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1417,7 +1417,7 @@ impl<T, U> Option<(T, U)> {
14171417
/// assert_eq!(y.unzip(), (None, None));
14181418
/// ```
14191419
#[inline]
1420-
#[unstable(feature = "unzip_option", issue = "none", reason = "recently added")]
1420+
#[unstable(feature = "unzip_option", issue = "87800", reason = "recently added")]
14211421
pub const fn unzip(self) -> (Option<T>, Option<U>) {
14221422
match self {
14231423
Some((a, b)) => (Some(a), Some(b)),

0 commit comments

Comments
 (0)