aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/README.md
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2020-10-27 07:48:20 +0000
committerLaurenČ›iu Nicola <[email protected]>2020-10-27 07:49:57 +0000
commitf94d0252b326febc8e52a91bc292d2555eae6741 (patch)
tree3838da84368ff1aa7350c0a63782f442608b9abf /docs/dev/README.md
parent7f346f9ae17ff9ebaeb24e5bfc4aa56f6ec13191 (diff)
Update client install command in dev docs
Diffstat (limited to 'docs/dev/README.md')
-rw-r--r--docs/dev/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md
index 90e74f226..abb387e8e 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -80,7 +80,7 @@ For this, it is important to have the following in your `settings.json` file:
80 "rust-analyzer.serverPath": "rust-analyzer" 80 "rust-analyzer.serverPath": "rust-analyzer"
81} 81}
82``` 82```
83After I am done with the fix, I use `cargo xtask install --client-code` to try the new extension for real. 83After I am done with the fix, I use `cargo xtask install --client` to try the new extension for real.
84 84
85If I need to fix something in the `rust-analyzer` crate, I feel sad because it's on the boundary between the two processes, and working there is slow. 85If I need to fix something in the `rust-analyzer` crate, I feel sad because it's on the boundary between the two processes, and working there is slow.
86I usually just `cargo xtask install --server` and poke changes from my live environment. 86I usually just `cargo xtask install --server` and poke changes from my live environment.