diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md
index b23da2b26..49bccb89a 100644
--- a/aider/website/docs/leaderboards/index.md
+++ b/aider/website/docs/leaderboards/index.md
@@ -42,7 +42,6 @@ The model also has to successfully apply all its changes to the source file with
Model |
Percent correct |
- Percent using correct edit format |
Cost (log scale bar) |
Command |
Edit format |
@@ -64,10 +63,6 @@ The model also has to successfully apply all its changes to the source file with
{{ row.pass_rate_2 }}%
-
-
- {{ row.percent_cases_well_formed }}%
- |
{% if row.total_cost > 0 %}
@@ -103,14 +98,14 @@ The model also has to successfully apply all its changes to the source file with
word-wrap: break-word;
overflow-wrap: break-word;
}
- td:nth-child(5), td:nth-child(6) { /* Command and Edit Format columns */
+ td:nth-child(4), td:nth-child(5) { /* Command and Edit Format columns */
font-size: 12px;
}
/* Hide command and edit format columns on mobile */
@media screen and (max-width: 767px) {
- th:nth-child(5), td:nth-child(5), /* Command column */
- th:nth-child(6), td:nth-child(6) { /* Edit format column */
+ th:nth-child(4), td:nth-child(4), /* Command column */
+ th:nth-child(5), td:nth-child(5) { /* Edit format column */
display: none;
}
}
|