Change tabs to spaces, for consistency with rustfmt.

This code is in a macro, which is presumably why rustfmt itself doesn't
reformat it.
This commit is contained in:
Dan Gohman
2018-02-21 07:25:43 -08:00
parent 043d80f7e1
commit 20500913ad

View File

@@ -90,8 +90,8 @@ macro_rules! entity_impl {
impl ::std::fmt::Debug for $entity {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
(self as &::std::fmt::Display).fmt(f)
}
}
(self as &::std::fmt::Display).fmt(f)
}
}
}
}