summaryrefslogtreecommitdiff
path: root/lsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lsp.h')
-rw-r--r--lsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lsp.h b/lsp.h
index 66f24de..c267283 100644
--- a/lsp.h
+++ b/lsp.h
@@ -273,7 +273,7 @@ typedef struct {
LSPRequestType type;
LSPString id_string; // if non-empty, this is the ID (only for server-to-client messages; we always use integer IDs)
// one member of this union is set depending on `type`.
- union {
+ union {
LSPRequestCancel cancel;
LSPRequestDidOpen open;
LSPRequestDidClose close;
@@ -365,7 +365,7 @@ typedef enum {
} LSPCompletionKind;
// interface TextEdit in the LSP spec
-typedef struct {
+typedef struct {
LSPRange range;
LSPString new_text;
} LSPTextEdit;