Add link to tracking issue #82223

This commit is contained in:
Thom Chiovoloni 2021-02-17 09:04:03 -08:00
parent 2711b011e6
commit 404da0bc90

View file

@ -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,