Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/diagnostic.rs')
-rw-r--r--helix-view/src/diagnostic.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/diagnostic.rs b/helix-view/src/diagnostic.rs
index 414eb202..9674713d 100644
--- a/helix-view/src/diagnostic.rs
+++ b/helix-view/src/diagnostic.rs
@@ -44,14 +44,14 @@ pub enum DiagnosticProvider {
/// not clear the pull diagnostics and vice-versa.
identifier: Option<Arc<str>>,
},
- // Future internal features can go here...
+ Spelling,
}
impl DiagnosticProvider {
pub fn language_server_id(&self) -> Option<LanguageServerId> {
match self {
Self::Lsp { server_id, .. } => Some(*server_id),
- // _ => None,
+ _ => None,
}
}
}