summaryrefslogtreecommitdiff
path: root/server/src/method/textDocument/publishDiagnostics.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/method/textDocument/publishDiagnostics.lua')
-rw-r--r--server/src/method/textDocument/publishDiagnostics.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/method/textDocument/publishDiagnostics.lua b/server/src/method/textDocument/publishDiagnostics.lua
index 4ecfc17f..b006932e 100644
--- a/server/src/method/textDocument/publishDiagnostics.lua
+++ b/server/src/method/textDocument/publishDiagnostics.lua
@@ -44,7 +44,7 @@ end
local function createInfo(data, lines)
local diagnostic = {
- source = 'LSP',
+ source = 'Lua Language Server',
range = getRange(data.start, data.finish, lines),
severity = DiagnosticSeverity[data.level],
message = data.message,