mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 03:47:51 +03:00
diagnostics: Use Vec<Tag> instead of Option<Vec<Tag>>
This commit is contained in:
parent
64b0745413
commit
1df32c917c
3 changed files with 14 additions and 15 deletions
|
@ -43,6 +43,6 @@ pub struct Diagnostic {
|
|||
pub message: String,
|
||||
pub severity: Option<Severity>,
|
||||
pub code: Option<NumberOrString>,
|
||||
pub tags: Option<Vec<DiagnosticTag>>,
|
||||
pub tags: Vec<DiagnosticTag>,
|
||||
pub source: Option<String>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue