diff --git a/Jellyfin.Api/Controllers/PackageController.cs b/Jellyfin.Api/Controllers/PackageController.cs
index 1da5ac0e97..b5ee47ee43 100644
--- a/Jellyfin.Api/Controllers/PackageController.cs
+++ b/Jellyfin.Api/Controllers/PackageController.cs
@@ -32,11 +32,11 @@ namespace Jellyfin.Api.Controllers
}
///
- /// Gets a package, by name or assembly guid.
+ /// Gets a package by name or assembly guid.
///
/// The name of the package.
/// The guid of the associated assembly.
- /// Package info.
+ /// A containing package information.
[HttpGet("/{Name}")]
[ProducesResponseType(typeof(PackageInfo), StatusCodes.Status200OK)]
public async Task> GetPackageInfo(
@@ -55,7 +55,7 @@ namespace Jellyfin.Api.Controllers
///
/// Gets available packages.
///
- /// Packages information.
+ /// An containing available packages information.
[HttpGet]
[ProducesResponseType(typeof(PackageInfo[]), StatusCodes.Status200OK)]
public async Task> GetPackages()
@@ -71,7 +71,9 @@ namespace Jellyfin.Api.Controllers
/// Package name.
/// Guid of the associated assembly.
/// Optional version. Defaults to latest version.
- /// Status.
+ /// Package found.
+ /// Package not found.
+ /// An on success, or a if the package could not be found.
[HttpPost("/Installed/{Name}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -102,7 +104,8 @@ namespace Jellyfin.Api.Controllers
/// Cancels a package installation.
///
/// Installation Id.
- /// Status.
+ /// Installation cancelled.
+ /// An on successfully cancelling a package installation.
[HttpDelete("/Installing/{id}")]
[Authorize(Policy = Policies.RequiresElevation)]
public IActionResult CancelPackageInstallation(