aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src
diff options
context:
space:
mode:
authorHirokazu Hata <[email protected]>2019-01-23 17:47:30 +0000
committerHirokazu Hata <[email protected]>2019-01-23 17:47:30 +0000
commit70a35379abc393bb0cf34736dc7b00a0a2cf7ee4 (patch)
tree866280b73086437f76531ed8e4ad6f17970ce7d2 /crates/ra_lsp_server/src
parent76d52be1da7718d658327adbf7f49388ffbbd7d2 (diff)
Fix target_selection_range type
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r--crates/ra_lsp_server/src/conv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs
index 6818acaf6..8c87f5195 100644
--- a/crates/ra_lsp_server/src/conv.rs
+++ b/crates/ra_lsp_server/src/conv.rs
@@ -390,7 +390,7 @@ pub fn to_location_link(
390 origin_selection_range: Some(target.range.conv_with(line_index)), 390 origin_selection_range: Some(target.range.conv_with(line_index)),
391 target_uri, 391 target_uri,
392 target_range, 392 target_range,
393 target_selection_range: Some(target_selection_range), 393 target_selection_range: target_selection_range,
394 }; 394 };
395 Ok(res) 395 Ok(res)
396} 396}