mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Fix clippy on box references
This commit is contained in:
parent
494f7e727d
commit
32595ce161
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue