mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Fix typos (#1501)
This commit is contained in:
parent
9e3d16aa2f
commit
7e7971fca4
3 changed files with 5 additions and 5 deletions
|
|
@ -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."
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue