We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eefaee1 commit d5f1470Copy full SHA for d5f1470
src/librustdoc/html/format.rs
@@ -290,11 +290,11 @@ impl<'a> fmt::Display for WhereClause<'a> {
290
}
291
&clean::WherePredicate::RegionPredicate { ref lifetime, ref bounds } => {
292
clause.push_str(&format!("{}: {}",
293
- lifetime,
294
- bounds.iter()
295
- .map(|b| b.to_string())
296
- .collect::<Vec<_>>()
297
- .join(" + ")));
+ lifetime,
+ bounds.iter()
+ .map(|b| b.to_string())
+ .collect::<Vec<_>>()
+ .join(" + ")));
298
299
&clean::WherePredicate::EqPredicate { ref lhs, ref rhs } => {
300
if f.alternate() {
0 commit comments