Skip to content

Commit

Permalink
Add link to tracking issue rust-lang#82223
Browse files Browse the repository at this point in the history
  • Loading branch information
thomcc committed Feb 17, 2021
1 parent 2711b01 commit 404da0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 404da0b

Please sign in to comment.