Skip to content

Commit c578762

Browse files
committed
Output lintcheck summary HTML markdown in order
The data in the table needs to be in the same order as the headings.
1 parent c7dd98c commit c578762

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)