1
Fork 0

formatting

This commit is contained in:
Guillaume Gomez 2020-02-23 19:09:00 +01:00
parent e78c451733
commit 5654cde729
3 changed files with 24 additions and 27 deletions

View file

@ -394,10 +394,7 @@ pub struct TypeWithKind {
impl From<(Type, TypeKind)> for TypeWithKind {
fn from(x: (Type, TypeKind)) -> TypeWithKind {
TypeWithKind {
ty: x.0,
kind: x.1,
}
TypeWithKind { ty: x.0, kind: x.1 }
}
}