mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Merge pull request #1268 from narnaud/fix-semicolon
Fix missing semi-colon in SemanticTokensClientCapabilities
This commit is contained in:
commit
2bafa15a0e
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