Closed SunboX closed 9 years ago
This is the expected behavior--the same thing happens with JSDoc's default template. The issue is that you've effectively documented the constructor twice.
You can solve this issue by documenting the constructor just once:
xxx.Registration = (function() {
/**
* Text
*
* @class
* @memberof xxx
*/
var Registration = function() {};
return Registration;
})();
Thanks for the hint! :smile:
The headline
new Registration()
is duplicated in this case.Sample
Gnerated docs