about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2016-08-09 14:45:58 -0400
committerNiko Matsakis <niko@alum.mit.edu>2016-08-09 20:28:46 -0400
commit83068ebafd125e16dfd8821716030d8012fca0c6 (patch)
treeb4d336d4041ee785c17c68aa319bac61b73b58cf
parentc7f15aa178c179cc664dafa062121d854df5a3f6 (diff)
downloadrust-83068ebafd125e16dfd8821716030d8012fca0c6.tar.gz
rust-83068ebafd125e16dfd8821716030d8012fca0c6.zip
pacify the merciless tidy
-rw-r--r--src/librustc_incremental/persist/dirty_clean.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/librustc_incremental/persist/dirty_clean.rs b/src/librustc_incremental/persist/dirty_clean.rs
index fa363ecd1fd..3c77cc07d3d 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));
                 }
             }
         }