Skip to content

Commit

Permalink
Add tracking issue 62633
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jul 12, 2019
1 parent 955979a commit 74c8d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/option.rs
Expand Up @@ -1008,7 +1008,7 @@ impl<T: fmt::Debug> Option<T> {
/// }
/// ```
#[inline]
#[unstable(feature = "option_expect_none", reason = "newly added", issue = "0")]
#[unstable(feature = "option_expect_none", reason = "newly added", issue = "62633")]
pub fn expect_none(self, msg: &str) {
if let Some(val) = self {
expect_none_failed(msg, &val);
Expand Down Expand Up @@ -1050,7 +1050,7 @@ impl<T: fmt::Debug> Option<T> {
/// }
/// ```
#[inline]
#[unstable(feature = "option_unwrap_none", reason = "newly added", issue = "0")]
#[unstable(feature = "option_unwrap_none", reason = "newly added", issue = "62633")]
pub fn unwrap_none(self) {
if let Some(val) = self {
expect_none_failed("called `Option::unwrap_none()` on a `Some` value", &val);
Expand Down

0 comments on commit 74c8d98

Please sign in to comment.