From 355ced92eb29f02fc30b816e4b00c13e652b0351 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 7 Jul 2015 22:04:10 +0100 Subject: [PATCH] chore(doc-gen): fix spacing in heritage clauses --- docs/dgeni-package/processors/readTypeScriptModules.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/dgeni-package/processors/readTypeScriptModules.js b/docs/dgeni-package/processors/readTypeScriptModules.js index 2f749f8167..bf26c837aa 100644 --- a/docs/dgeni-package/processors/readTypeScriptModules.js +++ b/docs/dgeni-package/processors/readTypeScriptModules.js @@ -147,14 +147,14 @@ module.exports = function readTypeScriptModules(tsParser, readFilesProcessor, mo decl.heritageClauses.forEach(function(heritage) { if (heritage.token == ts.SyntaxKind.ExtendsKeyword) { - heritageString += " extends "; + heritageString += " extends"; heritage.types.forEach(function(typ, idx) { - heritageString += (idx > 0 ? ', ' : '') + typ.getFullText(); + heritageString += (idx > 0 ? ',' : '') + typ.getFullText(); }); } if (heritage.token == ts.SyntaxKind.ImplementsKeyword) { - heritageString += " implements "; + heritageString += " implements"; heritage.types.forEach(function(typ, idx) { heritageString += (idx > 0 ? ', ' : '') + typ.getFullText(); });