Skip to content

Commit

Permalink
Fix clippy on box references
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Mar 9, 2024
1 parent 494f7e7 commit 32595ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core-macro/src/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ impl ComponentBody {
}

struct DocField<'a> {
arg_name: &'a Box<Pat>,
arg_type: &'a Box<Type>,
arg_name: &'a Pat,
arg_type: &'a Type,
deprecation: Option<crate::utils::DeprecatedAttribute>,
input_arg_doc: String,
}
Expand Down

0 comments on commit 32595ce

Please sign in to comment.