Skip to content

Commit

Permalink
Added tracking issue to unstable attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Kixiron committed Aug 9, 2021
1 parent 9d8081e commit ab2c590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/option.rs
Expand Up @@ -1417,7 +1417,7 @@ impl<T, U> Option<(T, U)> {
/// assert_eq!(y.unzip(), (None, None));
/// ```
#[inline]
#[unstable(feature = "unzip_option", issue = "none", reason = "recently added")]
#[unstable(feature = "unzip_option", issue = "87800", reason = "recently added")]
pub const fn unzip(self) -> (Option<T>, Option<U>) {
match self {
Some((a, b)) => (Some(a), Some(b)),
Expand Down

0 comments on commit ab2c590

Please sign in to comment.