Skip to content

Commit 216d0fe

Browse files
committed
add tracking issue number to option_insert feature gate
1 parent 415a8e5 commit 216d0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ impl<T> Option<T> {
581581
/// assert_eq!(opt.unwrap(), 3);
582582
/// ```
583583
#[inline]
584-
#[unstable(feature = "option_insert", reason = "newly added", issue = "none")]
584+
#[unstable(feature = "option_insert", reason = "newly added", issue = "78271")]
585585
pub fn insert(&mut self, value: T) -> &mut T {
586586
*self = Some(value);
587587

0 commit comments

Comments
 (0)