Skip to content

Commit 83068eb

Browse files
committed
pacify the merciless tidy
1 parent c7f15aa commit 83068eb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/librustc_incremental/persist/dirty_clean.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> {
140140
let dep_node_str = self.dep_node_str(&dep_node);
141141
self.tcx.sess.span_err(
142142
item.span,
143-
&format!("`{:?}` not found in dirty set, but should be dirty", dep_node_str));
143+
&format!("`{:?}` not found in dirty set, but should be dirty",
144+
dep_node_str));
144145
}
145146
}
146147
_ => {
@@ -166,7 +167,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> {
166167
let dep_node_str = self.dep_node_str(&dep_node);
167168
self.tcx.sess.span_err(
168169
item.span,
169-
&format!("`{:?}` found in dirty-node set, but should be clean", dep_node_str));
170+
&format!("`{:?}` found in dirty-node set, but should be clean",
171+
dep_node_str));
170172
}
171173
}
172174
_ => {
@@ -175,7 +177,8 @@ impl<'a, 'tcx> DirtyCleanVisitor<'a, 'tcx> {
175177
let dep_node_str = self.dep_node_str(&dep_node);
176178
self.tcx.sess.span_err(
177179
item.span,
178-
&format!("`{:?}` not found in dep graph, but should be clean", dep_node_str));
180+
&format!("`{:?}` not found in dep graph, but should be clean",
181+
dep_node_str));
179182
}
180183
}
181184
}

0 commit comments

Comments
 (0)