about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lintcheck/src/json.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lintcheck/src/json.rs b/lintcheck/src/json.rs
index 808997ff022..79c1255c5ff 100644
--- a/lintcheck/src/json.rs
+++ b/lintcheck/src/json.rs
@@ -66,7 +66,7 @@ impl fmt::Display for Summary {
         } in &self.0
         {
             let html_id = to_html_id(name);
-            writeln!(f, "| [`{name}`](#{html_id}) | {added} | {changed} | {removed} |")?;
+            writeln!(f, "| [`{name}`](#{html_id}) | {added} | {removed} | {changed} |")?;
         }
 
         Ok(())