From d578a7f9bd982091d0dc1262afa10eadd1758d76 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Thu, 11 Dec 2025 20:12:56 +0100 Subject: [PATCH] Missing comment --- lib/data/dao/player_match_dao.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/data/dao/player_match_dao.dart b/lib/data/dao/player_match_dao.dart index 47c7b2d..9e242b7 100644 --- a/lib/data/dao/player_match_dao.dart +++ b/lib/data/dao/player_match_dao.dart @@ -80,9 +80,9 @@ class PlayerMatchDao extends DatabaseAccessor return rowsAffected > 0; } - /// Updates the players associated with a game based on the provided + /// Updates the players associated with a match based on the provided /// [newPlayer] list. It adds new players and removes players that are no - /// longer associated with the game. + /// longer associated with the match. Future updatePlayersFromMatch({ required String matchId, required List newPlayer,