about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChase Wilson <me@chasewilson.dev>2021-08-05 12:44:22 -0500
committerChase Wilson <me@chasewilson.dev>2021-08-09 10:24:03 -0500
commitab2c5902ca404cb21fc9fa8bd6f5c52f33d92949 (patch)
tree5703916356fc38ccbbf780a82a4876a4c707a4c9
parent9d8081e8b6e4082ed06bd984cd59ccf39741c9b7 (diff)
downloadrust-ab2c5902ca404cb21fc9fa8bd6f5c52f33d92949.tar.gz
rust-ab2c5902ca404cb21fc9fa8bd6f5c52f33d92949.zip
Added tracking issue to unstable attribute
-rw-r--r--library/core/src/option.rs2
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)),