diff options
author | Aleksey Kladov <[email protected]> | 2020-02-17 13:04:32 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-17 13:04:32 +0000 |
commit | 978bea2b3110cf84defae37a56157b8b7016bd3d (patch) | |
tree | fdcb6bda46f09e8f0ae3892dbc214463df18d6bf /editors/code | |
parent | ee4e41cbea8ef3758ccebd9ffb35c5290aebfceb (diff) |
Fix link to the manual
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index ece4883bd..947d5eb90 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -16,7 +16,7 @@ export async function activate(context: vscode.ExtensionContext) { | |||
16 | if (serverPath == null) { | 16 | if (serverPath == null) { |
17 | throw new Error( | 17 | throw new Error( |
18 | "Rust Analyzer Language Server is not available. " + | 18 | "Rust Analyzer Language Server is not available. " + |
19 | "Please, ensure its [proper installation](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#vs-code)." | 19 | "Please, ensure its [proper installation](https://rust-analyzer.github.io/manual.html#installation)." |
20 | ); | 20 | ); |
21 | } | 21 | } |
22 | 22 | ||