@@ -946,7 +946,7 @@ Finally, call `.build()` to create the instance of `{name}`.
946946
947947 let field_name = field. extends_vec_ident ( ) . unwrap ( ) ;
948948
949- let descructuring = self . included_fields ( ) . map ( |f| {
949+ let destructuring = self . included_fields ( ) . map ( |f| {
950950 let name = f. name ;
951951 quote ! ( #name)
952952 } ) ;
@@ -1048,7 +1048,7 @@ Finally, call `.build()` to create the instance of `{name}`.
10481048 ____attr: impl dioxus_core:: IntoAttributeValue <L >,
10491049 ____volatile: bool
10501050 ) -> Self {
1051- let ( #( #descructuring , ) * ) = self . fields;
1051+ let ( #( #destructuring , ) * ) = self . fields;
10521052 self . #field_name. push(
10531053 dioxus_core:: Attribute :: new(
10541054 ____name,
@@ -1084,7 +1084,7 @@ Finally, call `.build()` to create the instance of `{name}`.
10841084 ref builder_name, ..
10851085 } = * self ;
10861086
1087- let descructuring = self . included_fields ( ) . map ( |f| {
1087+ let destructuring = self . included_fields ( ) . map ( |f| {
10881088 if f. ordinal == field. ordinal {
10891089 quote ! ( _)
10901090 } else {
@@ -1214,7 +1214,7 @@ Finally, call `.build()` to create the instance of `{name}`.
12141214 #[ allow( clippy:: type_complexity) ]
12151215 pub fn #field_name < #marker > ( self , #field_name: #arg_type) -> #builder_name < #( #target_generics ) , * > {
12161216 let #field_name = ( #arg_expr, ) ;
1217- let ( #( #descructuring , ) * ) = self . fields;
1217+ let ( #( #destructuring , ) * ) = self . fields;
12181218 #builder_name {
12191219 #( #forward_fields, ) *
12201220 fields: ( #( #reconstructing, ) * ) ,
@@ -1410,7 +1410,7 @@ Finally, call `.build()` to create the instance of `{name}`.
14101410 ) ;
14111411 } ) ;
14121412
1413- let descructuring = self . included_fields ( ) . map ( |f| f. name ) ;
1413+ let destructuring = self . included_fields ( ) . map ( |f| f. name ) ;
14141414
14151415 let helper_trait_name = & self . conversion_helper_trait_name ;
14161416 // The default of a field can refer to earlier-defined fields, which we handle by
@@ -1530,7 +1530,7 @@ Finally, call `.build()` to create the instance of `{name}`.
15301530 impl #impl_generics #builder_name #modified_ty_generics #where_clause {
15311531 #doc
15321532 pub fn build( self ) -> #name #ty_generics {
1533- let ( #( #descructuring , ) * ) = self . fields;
1533+ let ( #( #destructuring , ) * ) = self . fields;
15341534 #( #assignments ) *
15351535 #name {
15361536 inner: #original_name {
@@ -1547,7 +1547,7 @@ Finally, call `.build()` to create the instance of `{name}`.
15471547 impl #impl_generics #builder_name #modified_ty_generics #where_clause {
15481548 #doc
15491549 pub fn build( self ) -> #name #ty_generics {
1550- let ( #( #descructuring , ) * ) = self . fields;
1550+ let ( #( #destructuring , ) * ) = self . fields;
15511551 #( #assignments ) *
15521552 #name {
15531553 #( #field_names ) , *
0 commit comments