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,