Merge pull request #1268 from narnaud/fix-semicolon

Fix missing semi-colon in SemanticTokensClientCapabilities
This commit is contained in:
Dirk Bäumer 2021-05-18 13:51:46 +02:00 committed by GitHub
commit 2bafa15a0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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;
};
};

View file

@ -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;
};
};