From f31e4aef0b4e0ed02864dfd5ca5615960c85837c Mon Sep 17 00:00:00 2001 From: Gurinder Singh Date: Mon, 22 Apr 2024 08:16:47 +0530 Subject: [PATCH] Add comma at one place in `abs()` documentation --- library/core/src/num/int_macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/num/int_macros.rs b/library/core/src/num/int_macros.rs index ab0c633ca0a33..de25b999bde5b 100644 --- a/library/core/src/num/int_macros.rs +++ b/library/core/src/num/int_macros.rs @@ -3199,7 +3199,7 @@ macro_rules! int_impl { /// that code in debug mode will trigger a panic on this case and /// optimized code will return #[doc = concat!("`", stringify!($SelfT), "::MIN`")] - /// without a panic. If you do not want this behavior consider + /// without a panic. If you do not want this behavior, consider /// using [`unsigned_abs`](Self::unsigned_abs) instead. /// /// # Examples