diff --git a/_specifications/lsp/3.17/metaModel/metaModel.json b/_specifications/lsp/3.17/metaModel/metaModel.json index 13149f4..17c4747 100644 --- a/_specifications/lsp/3.17/metaModel/metaModel.json +++ b/_specifications/lsp/3.17/metaModel/metaModel.json @@ -9670,7 +9670,7 @@ "name": "boolean" }, "optional": true, - "documentation": "Open and close notifications are sent to the server. If omitted open close notification should not\nbe sent." + "documentation": "Open and close notifications are sent to the server. If omitted open close notifications should not\nbe sent." }, { "name": "change", @@ -13043,7 +13043,7 @@ { "name": "Incremental", "value": 2, - "documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsend." + "documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsent." } ], "documentation": "Defines how the host (editor) should sync\ndocument changes to the language server." diff --git a/_specifications/lsp/3.17/specification.md b/_specifications/lsp/3.17/specification.md index dafbbf2..07b4f18 100644 --- a/_specifications/lsp/3.17/specification.md +++ b/_specifications/lsp/3.17/specification.md @@ -519,7 +519,7 @@ export namespace TextDocumentSyncKind { /** * Documents are synced by sending the full content on open. * After that only incremental updates to the document are - * send. + * sent. */ export const Incremental = 2; } @@ -531,7 +531,7 @@ export namespace TextDocumentSyncKind { export interface TextDocumentSyncOptions { /** * Open and close notifications are sent to the server. If omitted open - * close notification should not be sent. + * close notifications should not be sent. */ openClose?: boolean; diff --git a/_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md b/_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md index 72cb161..ba2d3f4 100644 --- a/_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md +++ b/_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md @@ -21,5 +21,5 @@ _Request_: * params: `WillSaveTextDocumentParams` _Response_: -* result:[`TextEdit[]`](#textEdit) \| `null` +* result: [`TextEdit[]`](#textEdit) \| `null` * error: code and message set in case an exception happens during the `textDocument/willSaveWaitUntil` request.