about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAsger Hautop Drewsen <asger@tyilo.com>2024-11-12 22:36:54 +0100
committerAsger Hautop Drewsen <asger@tyilo.com>2024-11-12 22:36:54 +0100
commit19843dbcb4888beeef41951f74e18299416e4c8a (patch)
treeb1b6b5a327c041bef07f13ce2a3c129106455638
parentf7273e0044ad8f35ad27282e4ab776af50b61a54 (diff)
downloadrust-19843dbcb4888beeef41951f74e18299416e4c8a.tar.gz
rust-19843dbcb4888beeef41951f74e18299416e4c8a.zip
Add tracking issue number to unsigned_nonzero_div_ceil feature
-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]