Skip to content

Commit d3c3588

Browse files
committed
Assign tracking issue number for feature(nonzero_from_mut)
1 parent e69a62c commit d3c3588

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/num/nonzero.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ macro_rules! nonzero_integers {
8484
///
8585
/// # Safety
8686
/// The referenced value must not be currently zero.
87-
#[unstable(feature = "nonzero_from_mut", issue = "none")]
87+
#[unstable(feature = "nonzero_from_mut", issue = "106290")]
8888
#[must_use]
8989
#[inline]
9090
pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self {
@@ -101,7 +101,7 @@ macro_rules! nonzero_integers {
101101

102102
/// Converts a primitive mutable reference to a non-zero mutable reference
103103
/// if the referenced integer is not zero.
104-
#[unstable(feature = "nonzero_from_mut", issue = "none")]
104+
#[unstable(feature = "nonzero_from_mut", issue = "106290")]
105105
#[must_use]
106106
#[inline]
107107
pub fn from_mut(n: &mut $Int) -> Option<&mut Self> {

0 commit comments

Comments
 (0)