aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop
diff options
context:
space:
mode:
authorJeremy A. Kolb <[email protected]>2018-11-07 14:13:16 +0000
committerAleksey Kladov <[email protected]>2018-11-07 15:24:55 +0000
commitc29f158c20ba57fc4a7067a493d79c38884ea1ec (patch)
treed584d4ec60ca43a5db0624498bd9b876b7265650 /crates/ra_lsp_server/src/main_loop
parenta83ed374d069e28c5e2715384fdd0a4c2c10aeea (diff)
Rustfmt to pass CI
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-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 3e9da8470..c872b0dc4 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -494,8 +494,8 @@ pub fn handle_hover(
494 494
495 return Ok(Some(Hover { 495 return Ok(Some(Hover {
496 contents, 496 contents,
497 range: Some(range) 497 range: Some(range),
498 })) 498 }));
499 } 499 }
500 } 500 }
501 501