Skip to content

Commit 01250fc

Browse files
committed
Add tracking issue
Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 0140dac commit 01250fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/core/src/option.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ impl<T> Option<T> {
452452
/// ```
453453
#[inline]
454454
#[track_caller]
455-
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "none")]
455+
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "81383")]
456456
pub unsafe fn unwrap_unchecked(self) -> T {
457457
debug_assert!(self.is_some());
458458
match self {

library/core/src/result.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ impl<T, E> Result<T, E> {
846846
/// ```
847847
#[inline]
848848
#[track_caller]
849-
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "none")]
849+
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "81383")]
850850
pub unsafe fn unwrap_unchecked(self) -> T {
851851
debug_assert!(self.is_ok());
852852
match self {
@@ -880,7 +880,7 @@ impl<T, E> Result<T, E> {
880880
/// ```
881881
#[inline]
882882
#[track_caller]
883-
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "none")]
883+
#[unstable(feature = "option_result_unwrap_unchecked", reason = "newly added", issue = "81383")]
884884
pub unsafe fn unwrap_err_unchecked(self) -> E {
885885
debug_assert!(self.is_err());
886886
match self {

0 commit comments

Comments
 (0)