diff options
author | Alan Du <[email protected]> | 2018-10-18 00:25:37 +0100 |
---|---|---|
committer | Alan Du <[email protected]> | 2018-10-18 00:42:23 +0100 |
commit | a5da770ec60a73abcc5350f25146be973540063f (patch) | |
tree | d0384d6a786c3a07689dc4dff04209207487b76b /crates/ra_lsp_server/src/main_loop | |
parent | fc8024de51261d252b1ad88566db6e246d14ee16 (diff) |
Fix function calls
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 49bd7895a..3e58e6f54 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -289,8 +289,8 @@ pub fn handle_runnables( | |||
289 | .filter_map(|ws| { | 289 | .filter_map(|ws| { |
290 | let tgt = ws.target_by_root(path)?; | 290 | let tgt = ws.target_by_root(path)?; |
291 | Some(( | 291 | Some(( |
292 | tgt.package(ws).name(ws).clone(), | 292 | tgt.package(ws).name(ws), |
293 | tgt.name(ws).clone(), | 293 | tgt.name(ws), |
294 | tgt.kind(ws), | 294 | tgt.kind(ws), |
295 | )) | 295 | )) |
296 | }) | 296 | }) |