aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop/handlers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop/handlers.rs')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs4
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 })