Skip to content

Commit

Permalink
fix: service macro comments #3472
Browse files Browse the repository at this point in the history
  • Loading branch information
Durairaj committed Sep 28, 2024
1 parent 48aaf41 commit 6216efd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actix-web/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -662,9 +662,9 @@ where
/// ```
#[macro_export]
macro_rules! services {
($($x:expr),+ $(,)?) => {
($($x,)+)
}
($($x:expr),* $(,)?) => {
($($x,)*)
};
}

/// HttpServiceFactory trait impl for tuples
Expand Down

0 comments on commit 6216efd

Please sign in to comment.