Skip to content

Commit 5c0766e

Browse files
authored
correct grammar and consistency in lazy property descriptions (#2170)
- the clients -> the client - lazy -> lazily - announces -> announcing
1 parent 4a4ff53 commit 5c0766e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

_specifications/lsp/3.17/language/codeAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ export interface CodeAction {
430430
The request is sent from the client to the server to resolve additional information for a given code action. This is usually used to compute
431431
the `edit` property of a code action to avoid its unnecessary computation during the `textDocument/codeAction` request.
432432

433-
Consider the clients announces the `edit` property as a property that can be resolved lazy using the client capability
433+
Consider the client announcing the `edit` property as a property that can be resolved lazily using the client capability
434434

435435
```typescript
436436
textDocument.codeAction.resolveSupport = { properties: ['edit'] };

_specifications/lsp/3.17/language/inlayHint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export type InlayHintKind = 1 | 2;
261261
The request is sent from the client to the server to resolve additional information for a given inlay hint. This is usually used to compute
262262
the `tooltip`, `location` or `command` properties of an inlay hint's label part to avoid its unnecessary computation during the `textDocument/inlayHint` request.
263263

264-
Consider the clients announces the `label.location` property as a property that can be resolved lazy using the client capability
264+
Consider the client announcing the `label.location` property as a property that can be resolved lazily using the client capability
265265

266266
```typescript
267267
textDocument.inlayHint.resolveSupport = { properties: ['label.location'] };

_specifications/lsp/3.18/language/codeAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ export interface CodeAction {
554554
The request is sent from the client to the server to resolve additional information for a given code action. This is usually used to compute
555555
the `edit` property of a code action to avoid its unnecessary computation during the `textDocument/codeAction` request.
556556

557-
Consider the clients announcing the `edit` property as a property that can be resolved lazily using the client capability.
557+
Consider the client announcing the `edit` property as a property that can be resolved lazily using the client capability
558558

559559
```typescript
560560
textDocument.codeAction.resolveSupport = { properties: ['edit'] };

_specifications/lsp/3.18/language/inlayHint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export type InlayHintKind = 1 | 2;
261261
The request is sent from the client to the server to resolve additional information for a given inlay hint. This is usually used to compute
262262
the `tooltip`, `location` or `command` properties of an inlay hint's label part to avoid its unnecessary computation during the `textDocument/inlayHint` request.
263263

264-
Consider the client announces the `label.location` property as a property that can be resolved lazily using the client capability
264+
Consider the client announcing the `label.location` property as a property that can be resolved lazily using the client capability
265265

266266
```typescript
267267
textDocument.inlayHint.resolveSupport = { properties: ['label.location'] };

_specifications/specification-3-16.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6273,7 +6273,7 @@ export interface CodeAction {
62736273
The request is sent from the client to the server to resolve additional information for a given code action. This is usually used to compute
62746274
the `edit` property of a code action to avoid its unnecessary computation during the `textDocument/codeAction` request.
62756275

6276-
Consider the clients announces the `edit` property as a property that can be resolved lazy using the client capability
6276+
Consider the client announcing the `edit` property as a property that can be resolved lazily using the client capability
62776277

62786278
```typescript
62796279
textDocument.codeAction.resolveSupport = { properties: ['edit'] };

0 commit comments

Comments
 (0)