Rollup merge of #132970 - tyilo:nonzero-u-div-ceil-issue, r=tgross35

Add tracking issue number to unsigned_nonzero_div_ceil feature

Tracking issue: #132968
This commit is contained in:
Matthias Krüger 2024-11-12 23:26:46 +01:00 committed by GitHub
commit d83de7e0c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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