Skip to content

Commit 404da0b

Browse files
committed
Add link to tracking issue #82223
1 parent 2711b01 commit 404da0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@ impl<T> Result<T, T> {
13021302
/// assert_eq!(err.into_ok_or_err(), 4);
13031303
/// ```
13041304
#[inline]
1305-
#[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "none")]
1305+
#[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "82223")]
13061306
pub const fn into_ok_or_err(self) -> T {
13071307
match self {
13081308
Ok(v) => v,

0 commit comments

Comments
 (0)