Skip to content

Commit

Permalink
Rollup merge of rust-lang#132970 - tyilo:nonzero-u-div-ceil-issue, r=…
Browse files Browse the repository at this point in the history
…tgross35

Add tracking issue number to unsigned_nonzero_div_ceil feature

Tracking issue: rust-lang#132968
  • Loading branch information
matthiaskrgr authored Nov 12, 2024
2 parents ae5c00f + 19843db commit d83de7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/num/nonzero.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d83de7e

Please sign in to comment.