aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/lsp-extensions.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/lsp-extensions.md')
-rw-r--r--docs/dev/lsp-extensions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md
index 78d86f060..d7f287894 100644
--- a/docs/dev/lsp-extensions.md
+++ b/docs/dev/lsp-extensions.md
@@ -1,5 +1,5 @@
1<!--- 1<!---
2lsp_ext.rs hash: 91f2c62457e0a20f 2lsp_ext.rs hash: 7609fd6d7b4ab231
3 3
4If you need to change the above hash to make the test pass, please check if you 4If you need to change the above hash to make the test pass, please check if you
5need to adjust this doc as well and ping this issue: 5need to adjust this doc as well and ping this issue:
@@ -423,7 +423,7 @@ Reloads project information (that is, re-executes `cargo metadata`).
423 423
424```typescript 424```typescript
425interface StatusParams { 425interface StatusParams {
426 status: "loading" | "ready" | "invalid" | "needsReload", 426 status: "loading" | "readyPartial" | "ready" | "invalid" | "needsReload",
427} 427}
428``` 428```
429 429