about summary refs log tree commit diff
diff options
context:
space:
mode:
authorConnor Horman <chorman64@gmail.com>2024-08-21 23:38:04 +0000
committerConnor Horman <chorman64@gmail.com>2024-08-21 23:38:04 +0000
commit27b63b85ec7f8a767b91dd75bad7ca18399901a6 (patch)
treedde2dc89e3a32c455d13e4f6dd92c5e98f6c7d71
parent9907f617ab8c0fc1a36161d5b33cd86780fb9b09 (diff)
downloadrust-27b63b85ec7f8a767b91dd75bad7ca18399901a6.tar.gz
rust-27b63b85ec7f8a767b91dd75bad7ca18399901a6.zip
chore: `x fmt`
-rw-r--r--library/core/src/num/int_macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/int_macros.rs b/library/core/src/num/int_macros.rs
index 91d70473a66..c11cae1666f 100644
--- a/library/core/src/num/int_macros.rs
+++ b/library/core/src/num/int_macros.rs
@@ -1452,7 +1452,7 @@ macro_rules! int_impl {
         #[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shl(4), 0x1);")]
         #[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shr(129), 0);")]
         #[doc = concat!("assert_eq!(", stringify!($SelfT), "::MIN.unbounded_shr(129), -1);")]
-        /// ```  
+        /// ```
         #[unstable(feature = "unbounded_shifts", issue = "129375")]
         #[rustc_allow_const_fn_unstable(unchecked_shifts)]
         #[must_use = "this returns the result of the operation, \