Skip to content

Commit 1de8af5

Browse files
committed
update error message wording
1 parent f4507ee commit 1de8af5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lsp/providers/diagnosticsProvider.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,10 @@ function getInvalidConfigPathDiagnostics(
360360
isValid(value[key])
361361
)
362362
if (firstValidKey) {
363-
message += ` Did you mean '${stitch([...keys, firstValidKey])}'?`
363+
message += ` Did you mean something like '${stitch([
364+
...keys,
365+
firstValidKey,
366+
])}'?`
364367
}
365368
}
366369
}

0 commit comments

Comments
 (0)