Skip to content

Commit

Permalink
Fixed semi colons in hover
Browse files Browse the repository at this point in the history
  • Loading branch information
JPinkney committed Feb 7, 2018
1 parent 28561b7 commit 19e7273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/languageService/services/yamlHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class YAMLHover {

let title: string = null;
let markdownDescription: string = null;
let markdownEnumValueDescription = null, enumValue = null;;
let markdownEnumValueDescription = null, enumValue = null;
matchingSchemas.every((s) => {
if (s.node === node && !s.inverted && s.schema) {
title = title || s.schema.title;
Expand All @@ -100,7 +100,7 @@ export class YAMLHover {
});
let result = '';
if (title) {
result = toMarkdown(title)
result = toMarkdown(title);
}
if (markdownDescription) {
if (result.length > 0) {
Expand Down

0 comments on commit 19e7273

Please sign in to comment.