mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-17 02:08:30 +00:00
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`
This commit is contained in:
parent
1dba84019e
commit
7348040944
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ doctest = false
|
|||
|
||||
[[bin]]
|
||||
name = "rust-analyzer"
|
||||
path = "./src/bin/main.rs"
|
||||
path = "src/bin/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.26"
|
||||
|
|
Loading…
Reference in a new issue