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(); });