dokka
dokka copied to clipboard
[K2] Non-existent parameter from KDoc doesn't appear on the implicit primary constructor page
/**
* @param [paramInt] integer param
* @param [paramStr] string param
*/
class ClassKDocLocation {
}
In K1, the constructor page looks like this:
For K2:
But if I change the class signature to:
/**
* @param [paramInt] integer param
* @param [paramStr] string param
*/
class ClassKDocLocation() {
}
the K2 output will be the same.
Installation
- Dokka version: 1.9.20
Parent: #3328