diff --git a/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs b/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs index 599cf946..76310aec 100644 --- a/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs +++ b/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs @@ -61,7 +61,7 @@ public class StatisticsEndpoints : ApiEndpointController /// /// Get player counts for each individual title /// - /// An instance of PlayerCountResponse + /// An instance of PlayerCountByGameResponse [HttpGet("playerCount")] [HttpGet("playerCount/game")] [ProducesResponseType(typeof(PlayerCountByGameResponse), StatusCodes.Status200OK)] @@ -86,9 +86,9 @@ public class StatisticsEndpoints : ApiEndpointController } /// - /// Get player counts for each individual title + /// Get player counts for each individual platform /// - /// An instance of PlayerCountResponse + /// An instance of PlayerCountByPlatformResponse [HttpGet("playerCount/platform")] [ProducesResponseType(typeof(PlayerCountByPlatformResponse), StatusCodes.Status200OK)] public async Task GetPlayerCountsByPlatform() @@ -115,7 +115,7 @@ public class StatisticsEndpoints : ApiEndpointController /// /// Gets a list of online players /// - /// An instance of PlayerCountResponse + /// An instance of PlayerListResponse [HttpGet("players")] [ProducesResponseType(typeof(PlayerListResponse), StatusCodes.Status200OK)] public async Task GetPlayerList()