Rename some statistics for clarity

This commit is contained in:
Florine W. Dekker 2020-08-12 16:32:50 +02:00
parent 303508a1f7
commit bd5f9acb68
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "minesweeper",
"version": "0.80.4",
"version": "0.80.5",
"description": "Just Minesweeper!",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",

View File

@ -227,24 +227,24 @@ export class LocalStatistics implements Statistics {
</tr>
</table>
<h3>K/D ratio</h3>
<h3>Wins and losses</h3>
<table>
<tr>
<th>Games started</th>
<td>${this.gamesStarted}</td>
</tr>
<tr>
<th>Games lost</th>
<td>${this.gamesLost}</td>
</tr>
<tr>
<th>Games won</th>
<th>Games completed</th>
<td>${this.gamesWon}</td>
</tr>
<tr>
<th>Games won without losing</th>
<th>Games completed without losing</th>
<td>${this.gamesWonWithoutLosing}</td>
</tr>
<tr>
<th>Games completed with at least one loss</th>
<td>${this.gamesLost}</td>
</tr>
</table>
<h3>Steps taken</h3>