diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs index 06753edb24..7ba4bfcacb 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 { - // if this node is a MACRO_CALL, it means that `descend_into_macros` is failed to resolve. + // If this node is a MACRO_CALL, it means that `descend_into_macros` failed to resolve. // (e.g expanding a builtin macro). So we give up here. return None; },