Fix semver type specification

This commit is contained in:
Jordan Dominion
2024-09-13 16:50:19 -04:00
parent 6494f35958
commit 0744c88e0e
@@ -2,6 +2,7 @@
using HotChocolate.Language;
using HotChocolate.Types;
using Tgstation.Server.Common.Extensions;
namespace Tgstation.Server.Host.GraphQL.Types.Scalars
@@ -17,7 +18,8 @@ namespace Tgstation.Server.Host.GraphQL.Types.Scalars
public SemverType()
: base("Semver")
{
Description = "Represents a version in semver format as defined by https://semver.org/spec/v2.0.0.html";
Description = "Represents a version in semantic versioning format";
SpecifiedBy = new Uri("https://semver.org/spec/v2.0.0.html");
}
/// <inheritdoc />