about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorKirill Bulatov <mail4score@gmail.com>2023-08-28 00:11:26 +0300
committerKirill Bulatov <mail4score@gmail.com>2023-09-02 18:28:35 +0300
commite07fbabcfef2069e29ae053d92fbeaa0329492fc (patch)
treecc5f75aa62d93c1251bafccc2c9bcebe31c8598a /docs/dev
parent0e002fe5c6324d61cc8f8100fd7c8bd7e451572a (diff)
downloadrust-e07fbabcfef2069e29ae053d92fbeaa0329492fc.tar.gz
rust-e07fbabcfef2069e29ae053d92fbeaa0329492fc.zip
Resolve inlay hint data
Skip every propery set in inlay hint client resolve capabilities,
reducing overall json footprint.
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/lsp-extensions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md
index 67d82a68548..0801e988f5c 100644
--- a/docs/dev/lsp-extensions.md
+++ b/docs/dev/lsp-extensions.md
@@ -1,5 +1,5 @@
 <!---
-lsp/ext.rs hash: 149a5be3c5e469d1
+lsp/ext.rs hash: 121482ee911854da
 
 If you need to change the above hash to make the test pass, please check if you
 need to adjust this doc as well and ping this issue:
@@ -322,7 +322,7 @@ Position[]
 
 ```rust
 fn main() {
-    let x: Vec<()>/*cursor here*/ = vec![]
+    let x: Vec<()>/*cursor here*/ = vec![];
 }
 ```
 
@@ -362,7 +362,7 @@ interface RunnablesParams {
 ```typescript
 interface Runnable {
     label: string;
-    /// If this Runnable is associated with a specific function/module, etc, the location of this item
+    /// If this Runnable is associated with a specific function/module, etc., the location of this item
     location?: LocationLink;
     /// Running things is necessary technology specific, `kind` needs to be advertised via server capabilities,
     // the type of `args` is specific to `kind`. The actual running is handled by the client.