Skip to content

Commit db92621

Browse files
committed
Add extra newline after module path in hover info
Closes issue #3813
1 parent 3232fd5 commit db92621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ra_ide/src/display.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub(crate) fn rust_code_markup_with_doc(
8383

8484
if let Some(mod_path) = mod_path {
8585
if !mod_path.is_empty() {
86-
format_to!(buf, "{}\n", mod_path);
86+
format_to!(buf, "{}\n\n", mod_path);
8787
}
8888
}
8989
format_to!(buf, "{}\n```", code);

0 commit comments

Comments
 (0)