diff --git a/benstypcursus.py b/benstypcursus.py index bd4b2ea..9bfd29c 100644 --- a/benstypcursus.py +++ b/benstypcursus.py @@ -97,8 +97,8 @@ def curses_engine(stdscr, items, mode="woorden"): accuracy = round((correct_chars / total_chars) * 100, 2) if total_chars else 0 stdscr.addstr(2, 0, f"modus: {mode}") - stdscr.addstr(3, 0, f"correct chars: {correct_chars}") - stdscr.addstr(4, 0, f"total chars: {total_chars}") + stdscr.addstr(3, 0, f"correcte letters: {correct_chars}") + stdscr.addstr(4, 0, f"totalale letters: {total_chars}") stdscr.addstr(5, 0, f"accuracy (first try): {accuracy}%") stdscr.addstr(6, 0, f"tijd: {total_time}s")