1
Fork 0
mirror of https://github.com/RGBCube/embd-rs synced 2025-07-26 21:17:44 +00:00

Remove repetetive quotes

This commit is contained in:
RGBCube 2024-01-05 09:40:49 +03:00
parent 161beeaf57
commit d3be214f10
No known key found for this signature in database

View file

@ -21,9 +21,9 @@ impl ToTokens for TokenVec {
fn to_tokens(&self, tokens: &mut TokenStream) {
let inner = &self.0;
tokens.extend(quote! {{
tokens.extend(quote! {
::std::borrow::Cow::Borrowed(&[#(#inner),*])
}});
});
}
}