Skip to content

Commit

Permalink
Fix rustfmt violation
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Jan 13, 2021
1 parent 3021e65 commit 0e5d266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion derive_builder_core/src/builder_field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl<'a> BuilderField<'a> {
/// Emits a struct field initializer that initializes the field to `Default::default`.
pub fn default_initializer_tokens(&self) -> TokenStream {
let ident = self.field_ident;
quote!{ #ident : ::derive_builder::export::core::default::Default::default(), }
quote! { #ident : ::derive_builder::export::core::default::Default::default(), }
}
}

Expand Down

0 comments on commit 0e5d266

Please sign in to comment.