Fix Clippy

This commit is contained in:
Hirrolot 2021-06-15 14:03:49 +06:00
parent 4e80218e3d
commit 4dc5fc689b

View file

@ -89,7 +89,7 @@ fn create_parser<'a>(
count_args, count_args,
), ),
ParserType::Custom(s) => { ParserType::Custom(s) => {
let ident = syn::Ident::new(&s, Span::call_site()); let ident = syn::Ident::new(s, Span::call_site());
quote! { #ident } quote! { #ident }
} }
}; };