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 <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
silverwind authored and jasnell committed Mar 2, 2017
1 parent 4c05d6a commit 172be50
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 172be50

Please sign in to comment.