From 68885cbb96560e132116fc570d8742c1cf36ae4c Mon Sep 17 00:00:00 2001 From: Peter Robins Date: Sat, 28 Jun 2014 04:28:35 -0400 Subject: [PATCH] Docs: fix missing space on type signature --- apidoc/template/publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apidoc/template/publish.js b/apidoc/template/publish.js index afaab3ab37..067e3efa96 100644 --- a/apidoc/template/publish.js +++ b/apidoc/template/publish.js @@ -76,14 +76,14 @@ function addSignatureReturns(f) { function addSignatureTypes(f) { var types = helper.getSignatureTypes(f); - f.signature = (f.signature || '') + ''+(types.length? ' :'+types.join('|') : '')+''; + f.signature = (f.signature || '') + ''+(types.length? ' :'+types.join('|') : '')+' '; } function addAttribs(f) { var attribs = helper.getAttribs(f); if (attribs.length) { - f.attribs = '' + htmlsafe(attribs.length ? attribs.join(',') : '') + ''; + f.attribs = '' + htmlsafe(attribs.length ? attribs.join(',') : '') + ' '; } }