mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Fix missing semi-colon in SemanticTokensClientCapabilities
This commit is contained in:
parent
73417646a7
commit
ba4cd78f13
2 changed files with 2 additions and 2 deletions
|
|
@ -7637,7 +7637,7 @@ interface SemanticTokensClientCapabilities {
|
|||
* The client will send the `textDocument/semanticTokens/full/delta`
|
||||
* request if the server provides a corresponding handler.
|
||||
*/
|
||||
delta?: boolean
|
||||
delta?: boolean;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -7745,7 +7745,7 @@ interface SemanticTokensClientCapabilities {
|
|||
* The client will send the `textDocument/semanticTokens/full/delta`
|
||||
* request if the server provides a corresponding handler.
|
||||
*/
|
||||
delta?: boolean
|
||||
delta?: boolean;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue