diff options
| author | Steve Kowalik <steven@wedontsleep.org> | 2023-11-02 22:00:13 +1100 |
|---|---|---|
| committer | Steve Kowalik <steven@wedontsleep.org> | 2023-11-02 22:00:13 +1100 |
| commit | 9785b58b857129cee85788637f216248a49c6e7c (patch) | |
| tree | 661a703b4b5f21b99a69445018f0c2c78a7a15fa /Jellyfin.Api/Controllers/TvShowsController.cs | |
| parent | ac1494c136bef41ce87a2555b0df2a0bc3c6b86f (diff) | |
Correct docstring for /Upcoming
The docstring for /Upcoming looks very similar to /NextUp, also
including the same return value, when it should be slightly different,
correct it.
Diffstat (limited to 'Jellyfin.Api/Controllers/TvShowsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/TvShowsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/TvShowsController.cs b/Jellyfin.Api/Controllers/TvShowsController.cs index bdbbd1e0d..af403fa80 100644 --- a/Jellyfin.Api/Controllers/TvShowsController.cs +++ b/Jellyfin.Api/Controllers/TvShowsController.cs @@ -135,7 +135,7 @@ public class TvShowsController : BaseJellyfinApiController /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param> /// <param name="enableImageTypes">Optional. The image types to include in the output.</param> /// <param name="enableUserData">Optional. Include user data.</param> - /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the next up episodes.</returns> + /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the upcoming episodes.</returns> [HttpGet("Upcoming")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult<QueryResult<BaseItemDto>> GetUpcomingEpisodes( |
