We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07dea8e commit c02266fCopy full SHA for c02266f
internal/documentation/jsdoc/docdash/publish.js
@@ -686,7 +686,9 @@ function linkGenericType(type, classString) {
686
result = htmlsafe(baseType);
687
}
688
689
- result += '.<';
+ // Only add a separating dot if the baseType doesn't already end with one
690
+ const needsDot = !String(baseType).trim().endsWith('.');
691
+ result += (needsDot ? '.<' : '<');
692
693
// Recursively handle the inner type
694
if (isComplexTypeExpression(innerType)) {
0 commit comments