Skip to content

Commit 14633a0

Browse files
committed
Fix tracking issue for bool_to_option
1 parent 432e145 commit 14633a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/bool.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ impl bool {
1212
/// assert_eq!(false.then_some(0), None);
1313
/// assert_eq!(true.then_some(0), Some(0));
1414
/// ```
15-
#[unstable(feature = "bool_to_option", issue = "64260")]
15+
#[unstable(feature = "bool_to_option", issue = "80967")]
1616
#[inline]
1717
pub fn then_some<T>(self, t: T) -> Option<T> {
1818
if self { Some(t) } else { None }

0 commit comments

Comments
 (0)