From da26b8f375cc729d973d20ed631b62096364104a Mon Sep 17 00:00:00 2001 From: "Shane F. Carr" Date: Fri, 18 Oct 2024 17:17:06 -0700 Subject: [PATCH] fmt --- components/datetime/src/fieldset.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/components/datetime/src/fieldset.rs b/components/datetime/src/fieldset.rs index 9887942828..26a70e3f16 100644 --- a/components/datetime/src/fieldset.rs +++ b/components/datetime/src/fieldset.rs @@ -37,12 +37,7 @@ macro_rules! yes_to { /// Generates the options argument passed into the docs test constructor macro_rules! length_option_helper { ($type:ty, $length:ident) => { - concat!( - stringify!($type), - "::", - stringify!($length), - "()" - ) + concat!(stringify!($type), "::", stringify!($length), "()") }; }