Skip to content

Commit

Permalink
pacify the merciless tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Aug 10, 2016
1 parent c7f15aa commit 83068eb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/librustc_incremental/persist/dirty_clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}
_ => {
Expand All @@ -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));
}
}
_ => {
Expand All @@ -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));
}
}
}
Expand Down

0 comments on commit 83068eb

Please sign in to comment.