summaryrefslogtreecommitdiff
path: root/lsp.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-28 00:45:33 -0400
committerpommicket <pommicket@gmail.com>2025-09-28 00:46:21 -0400
commit3c9e139aec08d1bb406a6219122ca982b4b7dc34 (patch)
tree4d7993152bbb76f1d8b7df6de45fb032332b94d0 /lsp.h
parente78bf3013ddb588638a93bed1f6eff4d0beb5106 (diff)
Remove trailing white space in source files
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;