about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSOFe <sofe2038@gmail.com>2022-12-30 22:50:41 +0800
committerDavid Tolnay <dtolnay@gmail.com>2024-01-19 13:53:13 -0800
commit596410eb36c90c501fc57f68d81a57b6e0053a5c (patch)
treeab4e58c5b0490042954887bcb8bc244d57a936a4
parent3acb445f15d69c982c37df15a27d06b43ca6e388 (diff)
downloadrust-596410eb36c90c501fc57f68d81a57b6e0053a5c.tar.gz
rust-596410eb36c90c501fc57f68d81a57b6e0053a5c.zip
Assign tracking issue number for feature(nonzero_from_mut)
-rw-r--r--library/core/src/num/nonzero.rs4
1 files changed, 2 insertions, 2 deletions
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 @@ macro_rules! nonzero_integer {
             ///
             /// # 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 @@ macro_rules! nonzero_integer {
 
             /// 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> {