Skip to content

Commit 157eb1c

Browse files
authored
Rollup merge of rust-lang#132970 - tyilo:nonzero-u-div-ceil-issue, r=tgross35
Add tracking issue number to unsigned_nonzero_div_ceil feature Tracking issue: rust-lang#132968
2 parents 03e52a5 + a0c0c40 commit 157eb1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/num/nonzero.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ macro_rules! nonzero_integer_signedness_dependent_impls {
12331233
#[doc = concat!("let three = NonZero::new(3", stringify!($Int), ").unwrap();")]
12341234
/// assert_eq!(three.div_ceil(two), two);
12351235
/// ```
1236-
#[unstable(feature = "unsigned_nonzero_div_ceil", issue = "none")]
1236+
#[unstable(feature = "unsigned_nonzero_div_ceil", issue = "132968")]
12371237
#[must_use = "this returns the result of the operation, \
12381238
without modifying the original"]
12391239
#[inline]

0 commit comments

Comments
 (0)