Skip to content

Commit d5f1470

Browse files
De-indent all fmt::Display impls for later replacement to functions
1 parent eefaee1 commit d5f1470

File tree

3 files changed

+255
-255
lines changed

3 files changed

+255
-255
lines changed

src/librustdoc/html/format.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@ impl<'a> fmt::Display for WhereClause<'a> {
290290
}
291291
&clean::WherePredicate::RegionPredicate { ref lifetime, ref bounds } => {
292292
clause.push_str(&format!("{}: {}",
293-
lifetime,
294-
bounds.iter()
295-
.map(|b| b.to_string())
296-
.collect::<Vec<_>>()
297-
.join(" + ")));
293+
lifetime,
294+
bounds.iter()
295+
.map(|b| b.to_string())
296+
.collect::<Vec<_>>()
297+
.join(" + ")));
298298
}
299299
&clean::WherePredicate::EqPredicate { ref lhs, ref rhs } => {
300300
if f.alternate() {

0 commit comments

Comments
 (0)