diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-11-30 14:15:10 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2024-11-30 14:15:10 +0100 |
| commit | be1f51929763e3910bb89e09d035dae9fbc01862 (patch) | |
| tree | f9baf9531410b647d9a130a23ea53279644f6971 /src/server/check.odin | |
| parent | 7acc1632eccd91e64ce45051d53f82a281abb071 (diff) | |
Fix issues with completing field with using.dev-2024-11
Diffstat (limited to 'src/server/check.odin')
| -rw-r--r-- | src/server/check.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/check.odin b/src/server/check.odin index 0f9588b..b02587b 100644 --- a/src/server/check.odin +++ b/src/server/check.odin @@ -174,14 +174,14 @@ check :: proc(paths: []string, uri: common.Uri, writer: ^Writer, config: ^common diagnostics = {}, } - notifaction := Notification { + notification := Notification { jsonrpc = "2.0", method = "textDocument/publishDiagnostics", params = params, } if writer != nil { - send_notification(notifaction, writer) + send_notification(notification, writer) } delete(uri) |