Skip to content

Commit

Permalink
Revert "add diagnostic dynamic long description"
Browse files Browse the repository at this point in the history
This reverts commit a0bbbcf.
  • Loading branch information
RobbyCBennett committed Oct 16, 2023
1 parent a0bbbcf commit d586f84
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions _specifications/lsp/3.18/types/diagnostic.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,19 +151,8 @@ export interface DiagnosticRelatedInformation {
*/
export interface CodeDescription {
/**
* An URI to open with general information about the diagnostic error (e.g.
* paragraphs of a description, code examples, exceptions, links to sources).
* The URI can start with "file:", "https:", or other.
* An URI to open with more information about the diagnostic error.
*/
href?: URI;

/**
* A string with unique information about this particular instance of the
* diagnostic error (e.g. a warning that mentions your variable name
* specifcally and the function it was defined in).
*
* @since 3.18.0
*/
dynamicDescription?: string;
href: URI;
}
```
```

0 comments on commit d586f84

Please sign in to comment.