diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-02 12:58:28 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-02 12:58:28 +0100 |
commit | 131ccd95403e10131d6b8dfcad60ebc49c257c53 (patch) | |
tree | 3c7d02c26198f71bcb9d018b57024090c1ffa22c /docs | |
parent | 21132a7a748a70351f5d1ae6d8c51a3a0065013e (diff) | |
parent | d605ec9c321392d9c7ee4b440c560e1e405d92e6 (diff) |
Merge #4580
4580: Fix invoking cargo without consulting CARGO env var or standard installation paths r=matklad a=Veetaha
Followup for #4329
The pr essentially fixes [this bug](https://youtu.be/EzQ7YIIo1rY?t=2189)
cc @lefticus
Co-authored-by: veetaha <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/lsp-extensions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index c57a93f12..b7237ee90 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md | |||
@@ -427,7 +427,7 @@ interface Runnable { | |||
427 | /// The label to show in the UI. | 427 | /// The label to show in the UI. |
428 | label: string; | 428 | label: string; |
429 | /// The following fields describe a process to spawn. | 429 | /// The following fields describe a process to spawn. |
430 | bin: string; | 430 | kind: "cargo" | "rustc" | "rustup"; |
431 | args: string[]; | 431 | args: string[]; |
432 | /// Args for cargo after `--`. | 432 | /// Args for cargo after `--`. |
433 | extraArgs: string[]; | 433 | extraArgs: string[]; |