aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2020-02-28 07:39:34 +0000
committerEdwin Cheng <[email protected]>2020-02-28 07:39:34 +0000
commitcda04d20776e5b016fbce9be350bc2b9afde9f5e (patch)
tree0bd5d84502631dbe632a1ab0743f22c8b62183d1 /crates/ra_ide
parent5f30dd6f72e239474ee425e466711c40b78972f2 (diff)
Fix typo
Diffstat (limited to 'crates/ra_ide')
-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 06753edb2..7ba4bfcac 100644
--- a/crates/ra_ide/src/hover.rs
+++ b/crates/ra_ide/src/hover.rs
@@ -176,7 +176,7 @@ pub(crate) fn hover(db: &RootDatabase, position: FilePosition) -> Option<RangeIn
176 let ty = match_ast! { 176 let ty = match_ast! {
177 match node { 177 match node {
178 ast::MacroCall(_it) => { 178 ast::MacroCall(_it) => {
179 // if this node is a MACRO_CALL, it means that `descend_into_macros` is failed to resolve. 179 // If this node is a MACRO_CALL, it means that `descend_into_macros` failed to resolve.
180 // (e.g expanding a builtin macro). So we give up here. 180 // (e.g expanding a builtin macro). So we give up here.
181 return None; 181 return None;
182 }, 182 },