diff --git a/library/core/src/num/nonzero.rs b/library/core/src/num/nonzero.rs index 53ee6efcba7..bda691b16d4 100644 --- a/library/core/src/num/nonzero.rs +++ b/library/core/src/num/nonzero.rs @@ -177,7 +177,7 @@ pub const fn new(n: $Int) -> Option { /// /// # Safety /// The referenced value must not be currently zero. - #[unstable(feature = "nonzero_from_mut", issue = "none")] + #[unstable(feature = "nonzero_from_mut", issue = "106290")] #[must_use] #[inline] pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self { @@ -194,7 +194,7 @@ pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self { /// Converts a primitive mutable reference to a non-zero mutable reference /// if the referenced integer is not zero. - #[unstable(feature = "nonzero_from_mut", issue = "none")] + #[unstable(feature = "nonzero_from_mut", issue = "106290")] #[must_use] #[inline] pub fn from_mut(n: &mut $Int) -> Option<&mut Self> {