Skip to content

Commit 76aebb1

Browse files
authored
Rollup merge of #87045 - jhpratt:fix-tracking-issue, r=jyn514
Fix tracking issue for `bool_to_option` The previous tracking issue was closed in favor of the current.
2 parents 1232df9 + 14633a0 commit 76aebb1

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)