We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 318f85b + 93317db commit cfdb1d8Copy full SHA for cfdb1d8
docs/source/api.js
@@ -234,11 +234,6 @@ function parse() {
234
ctx.string = ctx.string + "()";
235
}
236
237
- // fixing up "something.prototypemissingdot" to "something.prototype.missingdot"
238
- if (/\.prototype[^.]/.test(ctx.string)) {
239
- ctx.string = `${ctx.constructor}.prototype.${ctx.name}`;
240
- }
241
-
242
// Backwards compat anchors
243
if (typeof ctx.constructor === 'string') {
244
ctx.anchorId = `${ctx.constructor.toLowerCase()}_${ctx.constructor}-${ctx.name}`;
0 commit comments