diff options
author | David Tolnay <[email protected]> | 2020-06-04 02:01:24 +0100 |
---|---|---|
committer | David Tolnay <[email protected]> | 2020-06-04 02:02:09 +0100 |
commit | 73480409440a04183cd7b74a166d0bf7f2c30d03 (patch) | |
tree | 5554d38ba1ca20090cdbffdc47b6849ffbc2db91 /crates | |
parent | 1dba84019e0f3e7175f204624629a52013332e52 (diff) |
Remove unneeded "./" prefix affecting error messages
Before:
error[E0599]: no method named `initialize_finish` found for struct `lsp_server::Connection` in the current scope
--> crates/rust-analyzer/./src/bin/main.rs:99:16
|
99 | connection.initialize_finish(initialize_id, initialize_result)?;
| ^^^^^^^^^^^^^^^^^ method not found in `lsp_server::Connection`
After:
error[E0599]: no method named `initialize_finish` found for struct `lsp_server::Connection` in the current scope
--> crates/rust-analyzer/src/bin/main.rs:99:16
|
99 | connection.initialize_finish(initialize_id, initialize_result)?;
| ^^^^^^^^^^^^^^^^^ method not found in `lsp_server::Connection`
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 65b487db3..bf8ca9e7d 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -10,7 +10,7 @@ doctest = false | |||
10 | 10 | ||
11 | [[bin]] | 11 | [[bin]] |
12 | name = "rust-analyzer" | 12 | name = "rust-analyzer" |
13 | path = "./src/bin/main.rs" | 13 | path = "src/bin/main.rs" |
14 | 14 | ||
15 | [dependencies] | 15 | [dependencies] |
16 | anyhow = "1.0.26" | 16 | anyhow = "1.0.26" |