diff options
author | Kirawi | 2021-10-25 16:02:16 +0000 |
---|---|---|
committer | GitHub | 2021-10-25 16:02:16 +0000 |
commit | 92c2d5d3bffb52a165fad75b6db2120de37b5ae4 (patch) | |
tree | fc329d26052a8bfdb83e99c75564ef68b7ba5f2d /helix-core/src/diagnostic.rs | |
parent | acc5ac5e731ea978fdd8a0f6762f2cd5101780b2 (diff) |
Document more of helix-core (#904)
Diffstat (limited to 'helix-core/src/diagnostic.rs')
-rw-r--r-- | helix-core/src/diagnostic.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-core/src/diagnostic.rs b/helix-core/src/diagnostic.rs index e08a71e7..ab47e075 100644 --- a/helix-core/src/diagnostic.rs +++ b/helix-core/src/diagnostic.rs @@ -1,3 +1,6 @@ +//! LSP diagnostic utility types. + +/// Describes the severity level of a [`Diagnostic`]. #[derive(Debug, Eq, PartialEq)] pub enum Severity { Error, @@ -6,12 +9,14 @@ pub enum Severity { Hint, } +/// A range of `char`s within the text. #[derive(Debug)] pub struct Range { pub start: usize, pub end: usize, } +/// Corresponds to [`lsp_types::Diagnostic`](https://docs.rs/lsp-types/0.91.0/lsp_types/struct.Diagnostic.html) #[derive(Debug)] pub struct Diagnostic { pub range: Range, |