about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-11-12 23:26:46 +0100
committerGitHub <noreply@github.com>2024-11-12 23:26:46 +0100
commitd83de7e0c59efeea72088e732f554639276d6f4b (patch)
treeb9985b53486cd9cb220d0e7f450b45725352d2a6
parentae5c00f053d95b4424e05f684c1871ecc205a9f3 (diff)
parent19843dbcb4888beeef41951f74e18299416e4c8a (diff)
downloadrust-d83de7e0c59efeea72088e732f554639276d6f4b.tar.gz
rust-d83de7e0c59efeea72088e732f554639276d6f4b.zip
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
-rw-r--r--library/core/src/num/nonzero.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/nonzero.rs b/library/core/src/num/nonzero.rs
index c7eb9d0f3fd..b883a0c2ec7 100644
--- a/library/core/src/num/nonzero.rs
+++ b/library/core/src/num/nonzero.rs
@@ -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]