diff options
| -rw-r--r-- | library/core/src/option.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/option.rs b/library/core/src/option.rs index d65915cdc71..3f9f04606b3 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -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)), |
