dox
dox copied to clipboard
Overloads only show one documention
Running dox on a class with an overloaded function, each version having its own documentation:
extern class Test {
/** Test with String **/
static inline overload function test(s:String):Void {};
/** Test with Int **/
static inline overload function test(i:Int):Void {};
}
show them grouped with only one documentation:
