From ba4cd78f138bfefeed9c9191bb4e39a4f8d34c6d Mon Sep 17 00:00:00 2001 From: Nicolas Arnaud-Cormos Date: Fri, 14 May 2021 20:03:19 +0200 Subject: [PATCH] Fix missing semi-colon in SemanticTokensClientCapabilities --- _specifications/specification-3-16.md | 2 +- _specifications/specification-3-17.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_specifications/specification-3-16.md b/_specifications/specification-3-16.md index 90d1d9b..259c52c 100644 --- a/_specifications/specification-3-16.md +++ b/_specifications/specification-3-16.md @@ -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; }; }; diff --git a/_specifications/specification-3-17.md b/_specifications/specification-3-17.md index ed83fd8..807832b 100644 --- a/_specifications/specification-3-17.md +++ b/_specifications/specification-3-17.md @@ -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; }; };