Skip to content

Commit 3643d81

Browse files
rustdoc: fix alignment of fn arguments when on multiple lines
1 parent 80bff6b commit 3643d81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/format.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ impl<'a> fmt::Display for Method<'a> {
971971
}
972972
} else {
973973
if i > 0 {
974-
args.push_str("<br> ");
974+
args.push_str(" <br>");
975975
args_plain.push_str(" ");
976976
}
977977
if !input.name.is_empty() {

0 commit comments

Comments
 (0)