From 96821057dc0e81537c4fb2a93b092ebbef4ac92c Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Fri, 17 Jun 2022 16:41:28 +0100 Subject: [PATCH] docs(lsp): correct header name in comments (#14897) --- cli/lsp/diagnostics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/lsp/diagnostics.rs b/cli/lsp/diagnostics.rs index db613c9fd8..fe3b5ee453 100644 --- a/cli/lsp/diagnostics.rs +++ b/cli/lsp/diagnostics.rs @@ -574,7 +574,7 @@ struct DiagnosticDataRedirect { /// An enum which represents diagnostic errors which originate from Deno itself. pub enum DenoDiagnostic { - /// A `x-deno-warn` is associated with the specifier and should be displayed + /// A `x-deno-warning` is associated with the specifier and should be displayed /// as a warning to the user. DenoWarn(String), /// The import assertion type is incorrect. @@ -763,7 +763,7 @@ fn diagnose_dependency( specifier, range, .. } => { let range = documents::to_lsp_range(range); - // If the module is a remote module and has a `X-Deno-Warn` header, we + // If the module is a remote module and has a `X-Deno-Warning` header, we // want a warning diagnostic with that message. if let Some(metadata) = cache_metadata.get(specifier) { if let Some(message) =