aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-08 22:58:53 +0000
committerVeetaha <[email protected]>2020-02-08 22:58:53 +0000
commitd08ae7e82f9eb4abb92f1274ea361acb21fd7b87 (patch)
treea9c3f631550210abf94d697670da10b6139a736e /editors/code/src/ctx.ts
parentfd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5 (diff)
vscode: minor names and message contents changes
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index f0e2d72f7..70042a479 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -31,7 +31,10 @@ export class Ctx {
31 this.client = null; 31 this.client = null;
32 const client = await createClient(this.config); 32 const client = await createClient(this.config);
33 if (!client) { 33 if (!client) {
34 throw new Error("Rust Analyzer Language Server is not available"); 34 throw new Error(
35 "Rust Analyzer Language Server is not available. " +
36 "Please, ensure its [proper installation](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#vs-code)."
37 );
35 } 38 }
36 39
37 this.pushCleanup(client.start()); 40 this.pushCleanup(client.start());