We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44995f7 commit 3214253Copy full SHA for 3214253
src/librustdoc/html/format.rs
@@ -270,7 +270,7 @@ crate fn print_where_clause<'a, 'tcx: 'a>(
270
0 => String::new(),
271
_ if f.alternate() => {
272
format!(
273
- "for<{:#}> ",
+ "for<{:#}> ",
274
comma_sep(bound_params.iter().map(|lt| lt.print()))
275
)
276
}
@@ -1059,7 +1059,11 @@ impl clean::BareFunctionDecl {
1059
) -> impl fmt::Display + 'a + Captures<'tcx> {
1060
display_fn(move |f| {
1061
if !self.generic_params.is_empty() {
1062
- write!(f, "for<{}> ", comma_sep(self.generic_params.iter().map(|g| g.print(cx))))
+ write!(
1063
+ f,
1064
+ "for<{}> ",
1065
+ comma_sep(self.generic_params.iter().map(|g| g.print(cx)))
1066
+ )
1067
} else {
1068
Ok(())
1069
0 commit comments