diff --git a/src/lsp/providers/diagnosticsProvider.ts b/src/lsp/providers/diagnosticsProvider.ts index 5945837..85de8b5 100644 --- a/src/lsp/providers/diagnosticsProvider.ts +++ b/src/lsp/providers/diagnosticsProvider.ts @@ -360,7 +360,10 @@ function getInvalidConfigPathDiagnostics( isValid(value[key]) ) if (firstValidKey) { - message += ` Did you mean '${stitch([...keys, firstValidKey])}'?` + message += ` Did you mean something like '${stitch([ + ...keys, + firstValidKey, + ])}'?` } } }