Skip to content

Commit fab7eab

Browse files
authored
Output lintcheck summary HTML markdown in order (#15371)
The data in the table needs to be in the same order as the headings. changelog: none Fixes #15370
2 parents 3c54672 + c578762 commit fab7eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lintcheck/src/json.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ impl fmt::Display for Summary {
6666
} in &self.0
6767
{
6868
let html_id = to_html_id(name);
69-
writeln!(f, "| [`{name}`](#{html_id}) | {added} | {changed} | {removed} |")?;
69+
writeln!(f, "| [`{name}`](#{html_id}) | {added} | {removed} | {changed} |")?;
7070
}
7171

7272
Ok(())

0 commit comments

Comments
 (0)