diff --git a/Jellyfin.Api/Controllers/PackageController.cs b/Jellyfin.Api/Controllers/PackageController.cs
index b5ee47ee43..f37319c19e 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
}
///
- /// 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.
+ /// The GUID of the associated assembly.
/// A containing package information.
[HttpGet("/{Name}")]
[ProducesResponseType(typeof(PackageInfo), StatusCodes.Status200OK)]
@@ -69,7 +70,7 @@ namespace Jellyfin.Api.Controllers
/// Installs a package.
///
/// Package name.
- /// Guid of the associated assembly.
+ /// GUID of the associated assembly.
/// Optional version. Defaults to latest version.
/// Package found.
/// Package not found.