Skip to content

Commit

Permalink
Fix clippy lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbargatz committed Jan 15, 2024
1 parent 71305cf commit b9087b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaiseki-macros/src/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl Parse for FieldDefinition {
if input.peek(Token![|]) {
input.parse::<Token![|]>()?;
// TODO: need to pass the closure variable name to subfields; just using "op" for now
let inner_name = input.parse::<Ident>()?;
let _inner_name = input.parse::<Ident>()?;
input.parse::<Token![|]>()?;

let content;
Expand Down

0 comments on commit b9087b8

Please sign in to comment.