From 701442e3edb47bc9a0ab044f4bc9c869d5e87a6a Mon Sep 17 00:00:00 2001 From: Ben de Roo Date: Sun, 3 May 2026 18:12:29 +0200 Subject: [PATCH] Update benstypcursus.py --- benstypcursus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")