From d23a77bebf073338137dc147db673c55349f605c Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 15 Aug 2022 16:13:55 -0600 Subject: [PATCH] Add space around pipe --- config/jsdoc/api/template/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jsdoc/api/template/publish.js b/config/jsdoc/api/template/publish.js index afe17e1032..082b29dd24 100644 --- a/config/jsdoc/api/template/publish.js +++ b/config/jsdoc/api/template/publish.js @@ -193,7 +193,7 @@ function addSignatureReturns(f) { if (returnTypes.length) { f.signature += '' + - (returnTypes.length ? '{' + returnTypes.join('|') + '}' : '') + + (returnTypes.length ? '{' + returnTypes.join(' | ') + '}' : '') + ''; } }