mirror of https://github.com/fafhrd91/actix-web
fix: service macro comments #3472
This commit is contained in:
parent
48aaf41638
commit
6216efdd0c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue