From 404da0bc901b92c2bf74a3c84fb0bd52cbf7f934 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Wed, 17 Feb 2021 09:04:03 -0800 Subject: [PATCH] Add link to tracking issue #82223 --- library/core/src/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/result.rs b/library/core/src/result.rs index 9cfa7b6211a19..d8747f8b8d6dc 100644 --- a/library/core/src/result.rs +++ b/library/core/src/result.rs @@ -1302,7 +1302,7 @@ impl Result { /// 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,