Skip to content

Commit 6e0d53b

Browse files
committed
tools: fix lint issue in doctool
PR-URL: nodejs#11658 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent bfecc17 commit 6e0d53b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/doc/type-parser.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ module.exports = {
8989
typeLinks.push('<a href="' + typeUrl + '" class="type">&lt;' +
9090
typeTextFull + '&gt;</a>');
9191
} else {
92-
typeLinks.push('<span class="type">&lt;' + typeTextFull + '&gt;</span>');
92+
typeLinks.push('<span class="type">&lt;' + typeTextFull +
93+
'&gt;</span>');
9394
}
9495
}
9596
});

0 commit comments

Comments
 (0)