Change TextDocumentSyncKindIncremental -> TextDocumentSyncKind.Incremental

This commit is contained in:
Simon Marchi 2018-03-09 10:07:53 -05:00 committed by GitHub
parent fd86b9f00e
commit 8ba6ccd66e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1325,7 +1325,7 @@ export interface TextDocumentSyncOptions {
openClose?: boolean;
/**
* Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
* and TextDocumentSyncKindIncremental.
* and TextDocumentSyncKind.Incremental.
*/
change?: number;
/**
@ -2172,7 +2172,7 @@ _Registration Options_: `TextDocumentChangeRegistrationOptions` defined as follo
export interface TextDocumentChangeRegistrationOptions extends TextDocumentRegistrationOptions {
/**
* How documents are synced to the server. See TextDocumentSyncKind.Full
* and TextDocumentSyncKindIncremental.
* and TextDocumentSyncKind.Incremental.
*/
syncKind: number;
}