From 9d9e62941f9a7134f4f94c255ef0d9da36170f75 Mon Sep 17 00:00:00 2001 From: Roman Reiss Date: Thu, 2 Mar 2017 18:32:47 +0100 Subject: [PATCH] tools: fix lint issue in doctool --- tools/doc/type-parser.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/doc/type-parser.js b/tools/doc/type-parser.js index 3dcd8b807c217b..6d9424039eb274 100644 --- a/tools/doc/type-parser.js +++ b/tools/doc/type-parser.js @@ -89,7 +89,8 @@ module.exports = { typeLinks.push('<' + typeTextFull + '>'); } else { - typeLinks.push('<' + typeTextFull + '>'); + typeLinks.push('<' + typeTextFull + + '>'); } } });