summaryrefslogtreecommitdiff
path: root/tools/doc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/doc')
-rw-r--r--tools/doc/type-parser.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/doc/type-parser.js b/tools/doc/type-parser.js
index 6314a4889f..e7a2c2576e 100644
--- a/tools/doc/type-parser.js
+++ b/tools/doc/type-parser.js
@@ -130,7 +130,7 @@ function toLink(typeInput) {
typeTexts.forEach((typeText) => {
typeText = typeText.trim();
if (typeText) {
- let typeUrl = null;
+ let typeUrl;
// To support type[], type[][] etc., we store the full string
// and use the bracket-less version to lookup the type URL.
@@ -143,7 +143,7 @@ function toLink(typeInput) {
typeUrl = `${jsDataStructuresUrl}#${primitive}_type`;
} else if (jsGlobalTypes.includes(typeText)) {
typeUrl = `${jsGlobalObjectsUrl}${typeText}`;
- } else if (customTypesMap[typeText]) {
+ } else {
typeUrl = customTypesMap[typeText];
}