mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-12 23:47:16 +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> {
|
struct DocField<'a> {
|
||||||
arg_name: &'a Box<Pat>,
|
arg_name: &'a Pat,
|
||||||
arg_type: &'a Box<Type>,
|
arg_type: &'a Type,
|
||||||
deprecation: Option<crate::utils::DeprecatedAttribute>,
|
deprecation: Option<crate::utils::DeprecatedAttribute>,
|
||||||
input_arg_doc: String,
|
input_arg_doc: String,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue