File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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> {
10081008 /// }
10091009 /// ```
10101010 #[ inline]
1011- #[ unstable( feature = "option_expect_none" , reason = "newly added" , issue = "0 " ) ]
1011+ #[ unstable( feature = "option_expect_none" , reason = "newly added" , issue = "62633 " ) ]
10121012 pub fn expect_none ( self , msg : & str ) {
10131013 if let Some ( val) = self {
10141014 expect_none_failed ( msg, & val) ;
@@ -1050,7 +1050,7 @@ impl<T: fmt::Debug> Option<T> {
10501050 /// }
10511051 /// ```
10521052 #[ inline]
1053- #[ unstable( feature = "option_unwrap_none" , reason = "newly added" , issue = "0 " ) ]
1053+ #[ unstable( feature = "option_unwrap_none" , reason = "newly added" , issue = "62633 " ) ]
10541054 pub fn unwrap_none ( self ) {
10551055 if let Some ( val) = self {
10561056 expect_none_failed ( "called `Option::unwrap_none()` on a `Some` value" , & val) ;
You can’t perform that action at this time.
0 commit comments