From b92f20778119cbe3d5facc7ccf9f5aff91b65092 Mon Sep 17 00:00:00 2001 From: Ron Tseytlin <40004112+steveRoll-git@users.noreply.github.com> Date: Fri, 24 Apr 2026 02:07:52 +0300 Subject: [PATCH] Fix wrong description for `Diagnostic.Tags` --- .../Protocol/Model/Diagnostic/Diagnostic.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LanguageServer.Framework/Protocol/Model/Diagnostic/Diagnostic.cs b/LanguageServer.Framework/Protocol/Model/Diagnostic/Diagnostic.cs index 3a82b2e..b6e2790 100644 --- a/LanguageServer.Framework/Protocol/Model/Diagnostic/Diagnostic.cs +++ b/LanguageServer.Framework/Protocol/Model/Diagnostic/Diagnostic.cs @@ -48,8 +48,7 @@ public class Diagnostic public StringOrMarkupContent Message { get; set; } = string.Empty; /** - * An array of related diagnostic information, e.g. when symbol-names within - * a scope collide all definitions can be marked via this property. + * Additional metadata about the diagnostic. */ [JsonPropertyName("tags")] public List? Tags { get; set; }