about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThom Chiovoloni <chiovolonit@gmail.com>2021-02-17 09:04:03 -0800
committerThom Chiovoloni <chiovolonit@gmail.com>2021-02-17 09:04:03 -0800
commit404da0bc901b92c2bf74a3c84fb0bd52cbf7f934 (patch)
tree79d6689a70016eb212a0aef32b268f759fe7bc6c
parent2711b011e6b2c06c6f289a8a2362c3af31dbc32c (diff)
downloadrust-404da0bc901b92c2bf74a3c84fb0bd52cbf7f934.tar.gz
rust-404da0bc901b92c2bf74a3c84fb0bd52cbf7f934.zip
Add link to tracking issue #82223
-rw-r--r--library/core/src/result.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/result.rs b/library/core/src/result.rs
index 9cfa7b6211a..d8747f8b8d6 100644
--- a/library/core/src/result.rs
+++ b/library/core/src/result.rs
@@ -1302,7 +1302,7 @@ impl<T> Result<T, T> {
     /// assert_eq!(err.into_ok_or_err(), 4);
     /// ```
     #[inline]
-    #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "none")]
+    #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "82223")]
     pub const fn into_ok_or_err(self) -> T {
         match self {
             Ok(v) => v,