diff options
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/hover.rs | 2 |
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 | }, |