aider: Centered the "Percent correct" column in the leaderboard table.

# Aider chat conversation:

USER: center align the percent correct column

ASSISTANT: Here is the *SEARCH/REPLACE* block to center align the "Percent correct" column:

docs/leaderboard.md
```markdown
<<<<<<< SEARCH
      <th style="padding: 8px; text-align: left;">Percent correct</th>
=======
      <th style="padding: 8px; text-align: center;">Percent correct</th>
>>>>>>> REPLACE
```
This commit is contained in:
Paul Gauthier 2024-05-03 18:06:22 -07:00
parent b21952a71c
commit 1d1f53601d

View file

@ -20,7 +20,7 @@ it will work best with models that score well on the code editing benchmark.
<thead style="background-color: #f2f2f2;">
<tr>
<th style="padding: 8px; text-align: left;">Model</th>
<th style="padding: 8px; text-align: left;">Percent correct</th>
<th style="padding: 8px; text-align: center;">Percent correct</th>
<th style="padding: 8px; text-align: left;">Command</th>
<th style="padding: 8px; text-align: left;">Edit format</th>
</tr>