Browse Source

tools: fix lint issue in doctool

PR-URL: https://github.com/nodejs/node/pull/11658
Backport-PR-URL: https://github.com/nodejs/node/pull/13054
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6.x
Roman Reiss 8 years ago
committed by Myles Borins
parent
commit
beb8485998
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 3
      tools/doc/type-parser.js

3
tools/doc/type-parser.js

@ -71,7 +71,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>');
}
}
});

Loading…
Cancel
Save