vscode-languageserver-protocol 3.17.4-next.0 → 3.17.4-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -162,7 +162,7 @@ export declare namespace DocumentSelector {
162
162
  function is(value: any[] | undefined | null): value is DocumentSelector;
163
163
  }
164
164
  /**
165
- * General parameters to to register for an notification or to register a provider.
165
+ * General parameters to register for a notification or to register a provider.
166
166
  */
167
167
  export interface Registration {
168
168
  /**
@@ -2824,7 +2824,7 @@ export interface DocumentFormattingOptions extends WorkDoneProgressOptions {
2824
2824
  export interface DocumentFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentFormattingOptions {
2825
2825
  }
2826
2826
  /**
2827
- * A request to to format a whole document.
2827
+ * A request to format a whole document.
2828
2828
  */
2829
2829
  export declare namespace DocumentFormattingRequest {
2830
2830
  const method: 'textDocument/formatting';
@@ -2868,7 +2868,7 @@ export interface DocumentRangeFormattingOptions extends WorkDoneProgressOptions
2868
2868
  export interface DocumentRangeFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentRangeFormattingOptions {
2869
2869
  }
2870
2870
  /**
2871
- * A request to to format a range in a document.
2871
+ * A request to format a range in a document.
2872
2872
  */
2873
2873
  export declare namespace DocumentRangeFormattingRequest {
2874
2874
  const method: 'textDocument/rangeFormatting';
@@ -847,7 +847,7 @@ var DocumentLinkResolveRequest;
847
847
  DocumentLinkResolveRequest.type = new messages_1.ProtocolRequestType(DocumentLinkResolveRequest.method);
848
848
  })(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {}));
849
849
  /**
850
- * A request to to format a whole document.
850
+ * A request to format a whole document.
851
851
  */
852
852
  var DocumentFormattingRequest;
853
853
  (function (DocumentFormattingRequest) {
@@ -856,7 +856,7 @@ var DocumentFormattingRequest;
856
856
  DocumentFormattingRequest.type = new messages_1.ProtocolRequestType(DocumentFormattingRequest.method);
857
857
  })(DocumentFormattingRequest = exports.DocumentFormattingRequest || (exports.DocumentFormattingRequest = {}));
858
858
  /**
859
- * A request to to format a range in a document.
859
+ * A request to format a range in a document.
860
860
  */
861
861
  var DocumentRangeFormattingRequest;
862
862
  (function (DocumentRangeFormattingRequest) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vscode-languageserver-protocol",
3
3
  "description": "VSCode Language Server Protocol implementation",
4
- "version": "3.17.4-next.0",
4
+ "version": "3.17.4-next.1",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {