From d0efa77e0e8f70926e4e7ab6defa053ae043dc47 Mon Sep 17 00:00:00 2001 From: kjeremy Date: Thu, 28 Feb 2019 14:48:21 -0500 Subject: Update hover message since we do support globs --- crates/ra_ide_api/src/hover.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/ra_ide_api/src/hover.rs b/crates/ra_ide_api/src/hover.rs index 47913d753..1a1853df3 100644 --- a/crates/ra_ide_api/src/hover.rs +++ b/crates/ra_ide_api/src/hover.rs @@ -50,7 +50,7 @@ impl HoverResult { /// for displaying in a UI pub fn to_markup(&self) -> String { let mut markup = if !self.exact { - let mut msg = String::from("Failed to exactly resolve the symbol. This is probably because rust_analyzer does not yet support glob imports or traits."); + let mut msg = String::from("Failed to exactly resolve the symbol. This is probably because rust_analyzer does not yet support traits."); if !self.results.is_empty() { msg.push_str(" \nThese items were found instead:"); } -- cgit v1.2.3