Skip to content

Commit

Permalink
Fix hover top padding
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-toubia committed Dec 5, 2019
1 parent d898ea4 commit 118262f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/infoparser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class REPLInfoParser {
const hover = new MarkdownString();
if (this._name !== '') {
const name = this.formatName(this._name);
hover.appendMarkdown(`### ${name}\n`);
hover.appendMarkdown(`${name}\n`);
if (this._specialForm) {
if (this._formsString) {
hover.appendText(this.formatFormsString(this._formsString));
Expand Down

0 comments on commit 118262f

Please sign in to comment.