From 8ba6ccd66e2eb7ff7274f20a7f0bdd715687571b Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Fri, 9 Mar 2018 10:07:53 -0500 Subject: [PATCH] Change TextDocumentSyncKindIncremental -> TextDocumentSyncKind.Incremental --- specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification.md b/specification.md index c5f64ae..81627c7 100644 --- a/specification.md +++ b/specification.md @@ -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; }