api-macros: Fix tiny formatting inconsistency

This commit is contained in:
Jonas Platte 2021-05-14 23:12:56 +02:00
parent b4aa66d68f
commit 073b699660
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -148,7 +148,7 @@ impl Request {
let body_lifetimes = if self.has_body_lifetimes() {
// duplicate the anonymous lifetime as many times as needed
let lifetimes = std::iter::repeat(quote! { '_ }).take(self.lifetimes.body.len());
quote! { < #( #lifetimes, )* >}
quote! { < #( #lifetimes, )* > }
} else {
TokenStream::new()
};