diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2016-08-09 14:45:58 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2016-08-09 20:28:46 -0400 |
| commit | 83068ebafd125e16dfd8821716030d8012fca0c6 (patch) | |
| tree | b4d336d4041ee785c17c68aa319bac61b73b58cf | |
| parent | c7f15aa178c179cc664dafa062121d854df5a3f6 (diff) | |
| download | rust-83068ebafd125e16dfd8821716030d8012fca0c6.tar.gz rust-83068ebafd125e16dfd8821716030d8012fca0c6.zip | |
pacify the merciless tidy
| -rw-r--r-- | src/librustc_incremental/persist/dirty_clean.rs | 9 |
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)); } } } |
