Skip to content

Commit

Permalink
tools: fix lint issue in doctool
Browse files Browse the repository at this point in the history
PR-URL: #11658
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
silverwind authored and italoacasas committed Mar 13, 2017
1 parent 97d1f5f commit 5a9e30f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/doc/type-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ module.exports = {
typeLinks.push('<a href="' + typeUrl + '" class="type">&lt;' +
typeTextFull + '&gt;</a>');
} else {
typeLinks.push('<span class="type">&lt;' + typeTextFull + '&gt;</span>');
typeLinks.push('<span class="type">&lt;' + typeTextFull +
'&gt;</span>');
}
}
});
Expand Down

0 comments on commit 5a9e30f

Please sign in to comment.