Skip to content

Commit f1decfc

Browse files
committed
Fix send->sent typo
1 parent 26086fa commit f1decfc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/dev/lsp-extensions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ As a result of the command call the client will get the respective workspace edi
129129

130130
**Server Capability:** `{ "parentModule": boolean }`
131131

132-
This request is send from client to server to handle "Goto Parent Module" editor action.
132+
This request is sent from client to server to handle "Goto Parent Module" editor action.
133133

134134
**Method:** `experimental/parentModule`
135135

@@ -163,7 +163,7 @@ mod foo;
163163

164164
**Server Capability:** `{ "joinLines": boolean }`
165165

166-
This request is send from client to server to handle "Join Lines" editor action.
166+
This request is sent from client to server to handle "Join Lines" editor action.
167167

168168
**Method:** `experimental/joinLines`
169169

@@ -210,7 +210,7 @@ fn main() {
210210

211211
**Server Capability:** `{ "onEnter": boolean }`
212212

213-
This request is send from client to server to handle <kbd>Enter</kbd> keypress.
213+
This request is sent from client to server to handle <kbd>Enter</kbd> keypress.
214214

215215
**Method:** `experimental/onEnter`
216216

@@ -261,7 +261,7 @@ As proper cursor positioning is raison-d'etat for `onEnter`, it uses `SnippetTex
261261

262262
**Server Capability:** `{ "ssr": boolean }`
263263

264-
This request is send from client to server to handle structural search replace -- automated syntax tree based transformation of the source.
264+
This request is sent from client to server to handle structural search replace -- automated syntax tree based transformation of the source.
265265

266266
**Method:** `experimental/ssr`
267267

@@ -348,7 +348,7 @@ Moreover, it would be cool if editors didn't need to implement even basic langua
348348

349349
**Server Capability:** `{ "runnables": { "kinds": string[] } }`
350350

351-
This request is send from client to server to get the list of things that can be run (tests, binaries, `cargo check -p`).
351+
This request is sent from client to server to get the list of things that can be run (tests, binaries, `cargo check -p`).
352352

353353
**Method:** `experimental/runnables`
354354

@@ -388,7 +388,7 @@ rust-analyzer supports only one `kind`, `"cargo"`. The `args` for `"cargo"` look
388388

389389
## Open External Documentation
390390

391-
This request is send from client to server to get a URL to documentation for the symbol under the cursor, if available.
391+
This request is sent from client to server to get a URL to documentation for the symbol under the cursor, if available.
392392

393393
**Method** `experimental/externalDocs`
394394

@@ -488,7 +488,7 @@ Expands macro call at a given position.
488488

489489
**Method:** `rust-analyzer/inlayHints`
490490

491-
This request is send from client to server to render "inlay hints" -- virtual text inserted into editor to show things like inferred types.
491+
This request is sent from client to server to render "inlay hints" -- virtual text inserted into editor to show things like inferred types.
492492
Generally, the client should re-query inlay hints after every modification.
493493
Note that we plan to move this request to `experimental/inlayHints`, as it is not really Rust-specific, but the current API is not necessary the right one.
494494
Upstream issue: https://github.com/microsoft/language-server-protocol/issues/956

0 commit comments

Comments
 (0)