summaryrefslogtreecommitdiff
path: root/dhall_generator/src
diff options
context:
space:
mode:
authorNadrieril2019-03-31 18:47:57 +0200
committerNadrieril2019-03-31 18:47:57 +0200
commitbfe3f7f75570540fa184a133653d16e86f22667a (patch)
treeab8df2a07f38539d4731cdff9b86d9d973055f21 /dhall_generator/src
parentf5d2151d35942b957230c3081a928af3619d9400 (diff)
rustfmt
Diffstat (limited to 'dhall_generator/src')
-rw-r--r--dhall_generator/src/dhall_type.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/dhall_generator/src/dhall_type.rs b/dhall_generator/src/dhall_type.rs
index ac8eb4e..270c27c 100644
--- a/dhall_generator/src/dhall_type.rs
+++ b/dhall_generator/src/dhall_type.rs
@@ -168,9 +168,7 @@ pub fn derive_type_inner(
// Ensure that all the fields have a Type impl
let mut where_clause = orig_where_clause.clone();
for ty in constraints.iter() {
- where_clause
- .predicates
- .push(parse_quote!(#ty: dhall::Type));
+ where_clause.predicates.push(parse_quote!(#ty: dhall::Type));
}
let ident = &input.ident;