From 83068ebafd125e16dfd8821716030d8012fca0c6 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 9 Aug 2016 14:45:58 -0400 Subject: [PATCH] pacify the merciless tidy --- src/librustc_incremental/persist/dirty_clean.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/librustc_incremental/persist/dirty_clean.rs b/src/librustc_incremental/persist/dirty_clean.rs index fa363ecd1fdcb..3c77cc07d3d89 100644 --- a/src/librustc_incremental/persist/dirty_clean.rs +++ b/src/librustc_incremental/persist/dirty_clean.rs @@ -140,7 +140,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> { let dep_node_str = self.dep_node_str(&dep_node); self.tcx.sess.span_err( item.span, - &format!("`{:?}` not found in dirty set, but should be dirty", dep_node_str)); + &format!("`{:?}` not found in dirty set, but should be dirty", + dep_node_str)); } } _ => { @@ -166,7 +167,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> { let dep_node_str = self.dep_node_str(&dep_node); self.tcx.sess.span_err( item.span, - &format!("`{:?}` found in dirty-node set, but should be clean", dep_node_str)); + &format!("`{:?}` found in dirty-node set, but should be clean", + dep_node_str)); } } _ => { @@ -175,7 +177,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> { let dep_node_str = self.dep_node_str(&dep_node); self.tcx.sess.span_err( item.span, - &format!("`{:?}` not found in dep graph, but should be clean", dep_node_str)); + &format!("`{:?}` not found in dep graph, but should be clean", + dep_node_str)); } } }