Run rustfmt over everything

This commit is contained in:
Alex Crichton
2018-11-27 12:07:59 -08:00
parent 4a70198143
commit 48f4adfa8c
45 changed files with 872 additions and 800 deletions

View File

@ -71,7 +71,8 @@ where
.map(|i| syn::PathSegment {
ident: i,
arguments: syn::PathArguments::None,
}).collect();
})
.collect();
syn::TypePath {
qself: None,
@ -83,7 +84,8 @@ where
},
segments: syn::punctuated::Punctuated::from_iter(segments),
},
}.into()
}
.into()
}
pub fn ident_ty(ident: Ident) -> syn::Type {