fix: service macro comments #3472

This commit is contained in:
Durairaj Subramaniam 2024-09-28 12:12:35 +01:00
parent 48aaf41638
commit 6216efdd0c
No known key found for this signature in database
GPG Key ID: 8D10F94C0323BABE
1 changed files with 3 additions and 3 deletions

View File

@ -662,9 +662,9 @@ where
/// ``` /// ```
#[macro_export] #[macro_export]
macro_rules! services { macro_rules! services {
($($x:expr),+ $(,)?) => { ($($x:expr),* $(,)?) => {
($($x,)+) ($($x,)*)
} };
} }
/// HttpServiceFactory trait impl for tuples /// HttpServiceFactory trait impl for tuples