From 473b42218154dcd4fb948950024adea1cac30611 Mon Sep 17 00:00:00 2001 From: Slendy Date: Mon, 22 Apr 2024 19:24:54 -0500 Subject: [PATCH] Fix inconsistencies in the XML documentation --- .../Controllers/StatisticsEndpoints.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()