Skip to content

Commit 74c8d98

Browse files
committed
Add tracking issue 62633
1 parent 955979a commit 74c8d98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/option.rs

+2-2
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)