Skip to content

Commit

Permalink
Clarify document content change events.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Sep 7, 2017
1 parent e1ecd6a commit fcb32f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,9 @@ interface DidChangeTextDocumentParams {
textDocument: VersionedTextDocumentIdentifier;

/**
* The actual content changes.
* The actual content changes. The content changes descibe single state changes

This comment has been minimized.

Copy link
@smarter

smarter Sep 7, 2017

Contributor

typo: descibe -> describe

* to the document. So if there are two content changes c1 and c2 for a document
* in state S10 then c1 move the document to S11 and c2 to S12.
*/
contentChanges: TextDocumentContentChangeEvent[];
}
Expand Down

0 comments on commit fcb32f9

Please sign in to comment.