aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-01-15 18:20:20 +0000
committerKirill Bulatov <[email protected]>2020-01-15 18:20:20 +0000
commitd51cf7794d110b064fd0e8d53726b4608ec50d1a (patch)
tree4cc529cede52694d63626dc1746b0f0971eaadb3 /crates/ra_lsp_server/src/main_loop
parent78a21253b494e573885ac8336bff6e93b401046f (diff)
itertools::Either -> either::Either
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-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 d76639474..9e9964880 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -3,7 +3,7 @@
3 3
4use std::{fmt::Write as _, io::Write as _}; 4use std::{fmt::Write as _, io::Write as _};
5 5
6use itertools::Either; 6use either::Either;
7use lsp_server::ErrorCode; 7use lsp_server::ErrorCode;
8use lsp_types::{ 8use lsp_types::{
9 CallHierarchyIncomingCall, CallHierarchyIncomingCallsParams, CallHierarchyItem, 9 CallHierarchyIncomingCall, CallHierarchyIncomingCallsParams, CallHierarchyItem,