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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs
index 1df8224ba..e36db12b3 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -875,7 +875,7 @@ fn highlight(world: &ServerWorld, file_id: FileId) -> Result<Vec<Decoration>> {
875 .map(|h| Decoration { 875 .map(|h| Decoration {
876 range: h.range.conv_with(&line_index), 876 range: h.range.conv_with(&line_index),
877 tag: h.tag, 877 tag: h.tag,
878 id: h.binding_hash.map(|x| x.to_string()), 878 binding_hash: h.binding_hash.map(|x| x.to_string()),
879 }) 879 })
880 .collect(); 880 .collect();
881 Ok(res) 881 Ok(res)