Fix clippy on box references

This commit is contained in:
Jonathan Kelley 2024-03-09 01:54:25 -08:00
parent 494f7e727d
commit 32595ce161
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE

View file

@ -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,
}