From 9d3d6b3ca3688643408ef920596487be087a0ba6 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Tue, 1 Jul 2025 22:34:49 +0200 Subject: [PATCH] Corrected docs --- lib/data/game_session.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/game_session.dart b/lib/data/game_session.dart index 80f1152..a741ae8 100644 --- a/lib/data/game_session.dart +++ b/lib/data/game_session.dart @@ -72,7 +72,7 @@ class GameSession extends ChangeNotifier { roundList = (json['roundList'] as List).map((e) => Round.fromJson(e)).toList(); - /// Returns the length of all player names combined. + /// Returns the length of the longest player name. int getMaxLengthOfPlayerNames() { int length = 0; for (String player in players) {