Skip to content

Commit 596410e

Browse files
SOF3dtolnay
authored andcommitted
Assign tracking issue number for feature(nonzero_from_mut)
1 parent 3acb445 commit 596410e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: library/core/src/num/nonzero.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ macro_rules! nonzero_integer {
177177
///
178178
/// # Safety
179179
/// The referenced value must not be currently zero.
180-
#[unstable(feature = "nonzero_from_mut", issue = "none")]
180+
#[unstable(feature = "nonzero_from_mut", issue = "106290")]
181181
#[must_use]
182182
#[inline]
183183
pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self {
@@ -194,7 +194,7 @@ macro_rules! nonzero_integer {
194194

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

0 commit comments

Comments
 (0)