aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers
diff options
context:
space:
mode:
authorBruce <bruce.coelho93@gmail.com>2020-05-19 18:13:42 +0100
committerBruce <bruce.coelho93@gmail.com>2020-05-19 18:13:42 +0100
commit24543b04c110b7cdf275c314ac61065dc36b25e8 (patch)
tree98db9cd70cd5e11cca4dd0909e2080f248abc151 /Jellyfin.Api/Controllers
parent0d8253d8e22d4cf34c58577e7fefb3f5733adedd (diff)
Applying review suggestion to documentation
Diffstat (limited to 'Jellyfin.Api/Controllers')
-rw-r--r--Jellyfin.Api/Controllers/PackageController.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Jellyfin.Api/Controllers/PackageController.cs b/Jellyfin.Api/Controllers/PackageController.cs
index b5ee47ee4..f37319c19 100644
--- a/Jellyfin.Api/Controllers/PackageController.cs
+++ b/Jellyfin.Api/Controllers/PackageController.cs
@@ -1,4 +1,5 @@
#nullable enable
+
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@@ -32,10 +33,10 @@ namespace Jellyfin.Api.Controllers
}
/// <summary>
- /// Gets a package by name or assembly guid.
+ /// Gets a package by name or assembly GUID.
/// </summary>
/// <param name="name">The name of the package.</param>
- /// <param name="assemblyGuid">The guid of the associated assembly.</param>
+ /// <param name="assemblyGuid">The GUID of the associated assembly.</param>
/// <returns>A <see cref="PackageInfo"/> containing package information.</returns>
[HttpGet("/{Name}")]
[ProducesResponseType(typeof(PackageInfo), StatusCodes.Status200OK)]
@@ -69,7 +70,7 @@ namespace Jellyfin.Api.Controllers
/// Installs a package.
/// </summary>
/// <param name="name">Package name.</param>
- /// <param name="assemblyGuid">Guid of the associated assembly.</param>
+ /// <param name="assemblyGuid">GUID of the associated assembly.</param>
/// <param name="version">Optional version. Defaults to latest version.</param>
/// <response code="200">Package found.</response>
/// <response code="404">Package not found.</response>