aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-17 13:04:32 +0000
committerAleksey Kladov <[email protected]>2020-02-17 13:04:32 +0000
commit978bea2b3110cf84defae37a56157b8b7016bd3d (patch)
treefdcb6bda46f09e8f0ae3892dbc214463df18d6bf /editors/code/src/main.ts
parentee4e41cbea8ef3758ccebd9ffb35c5290aebfceb (diff)
Fix link to the manual
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts2
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