File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1008,7 +1008,7 @@ impl<T: fmt::Debug> Option<T> {
1008
1008
/// }
1009
1009
/// ```
1010
1010
#[ inline]
1011
- #[ unstable( feature = "option_expect_none" , reason = "newly added" , issue = "0 " ) ]
1011
+ #[ unstable( feature = "option_expect_none" , reason = "newly added" , issue = "62633 " ) ]
1012
1012
pub fn expect_none ( self , msg : & str ) {
1013
1013
if let Some ( val) = self {
1014
1014
expect_none_failed ( msg, & val) ;
@@ -1050,7 +1050,7 @@ impl<T: fmt::Debug> Option<T> {
1050
1050
/// }
1051
1051
/// ```
1052
1052
#[ inline]
1053
- #[ unstable( feature = "option_unwrap_none" , reason = "newly added" , issue = "0 " ) ]
1053
+ #[ unstable( feature = "option_unwrap_none" , reason = "newly added" , issue = "62633 " ) ]
1054
1054
pub fn unwrap_none ( self ) {
1055
1055
if let Some ( val) = self {
1056
1056
expect_none_failed ( "called `Option::unwrap_none()` on a `Some` value" , & val) ;
You can’t perform that action at this time.
0 commit comments