From 20500913adf7b80e3ea6df33b4506815c5ab86a4 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 21 Feb 2018 07:25:43 -0800 Subject: [PATCH] Change tabs to spaces, for consistency with rustfmt. This code is in a macro, which is presumably why rustfmt itself doesn't reformat it. --- lib/cretonne/src/entity/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cretonne/src/entity/mod.rs b/lib/cretonne/src/entity/mod.rs index 837bb5f107..3cc8ec6f6d 100644 --- a/lib/cretonne/src/entity/mod.rs +++ b/lib/cretonne/src/entity/mod.rs @@ -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) + } + } } }