aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-03-16 14:16:27 +0000
committerGitHub <[email protected]>2020-03-16 14:16:27 +0000
commite192162d90f0681422c764c9d26816d50e8a3c7e (patch)
tree92c0a4926be7b8571e4936711adb440c120b84c0
parent0125b974f1a0911516908b5c1614e9068bd15333 (diff)
parentdd4ff92aa331b49b5a4597f9bff74b5f7362ebaa (diff)
Merge #3604
3604: Remove dat fixme r=matklad a=Veetaha Cleanup as per #3603 Co-authored-by: Veetaha <[email protected]>
-rw-r--r--crates/ra_ide/src/hover.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs
index 5b3760c18..a31187994 100644
--- a/crates/ra_ide/src/hover.rs
+++ b/crates/ra_ide/src/hover.rs
@@ -106,7 +106,7 @@ fn determine_mod_path(db: &RootDatabase, def: &Definition) -> Option<String> {
106 .flatten() 106 .flatten()
107 .join("::") 107 .join("::")
108 }); 108 });
109 mod_path // FIXME: replace dashes with underscores in crate display name 109 mod_path
110} 110}
111 111
112fn hover_text_from_name_kind(db: &RootDatabase, def: Definition) -> Option<String> { 112fn hover_text_from_name_kind(db: &RootDatabase, def: Definition) -> Option<String> {