Skip to content

Commit b25d990

Browse files
committed
fix
1 parent a3f5a32 commit b25d990

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ fn gen_input_format(sig: &Signature) -> String {
607607
FnArg::Typed(PatType { pat, .. }) => {
608608
if let Pat::Ident(pat_ident) = &**pat {
609609
let ident = &pat_ident.ident.to_string();
610-
// Skip async-trait generated anonymous arguments
610+
// Skip async-trait generated anonymous arguments.
611611
if ident.starts_with("__arg") {
612612
continue;
613613
}

0 commit comments

Comments
 (0)