```Kotlin /** * @param [paramInt] integer param * @param [paramStr] string param */ class ClassKDocLocation { } ``` In K1, the constructor page looks like this: <img width="735" alt="image" src="https://github.com/Kotlin/dokka/assets/7689049/3dd7448e-5ca0-4ff1-81e1-8f6316ea5858"> --- For K2: <img width="736" alt="image" src="https://github.com/Kotlin/dokka/assets/7689049/17597bdb-3d49-4f49-b263-7a45e4aa5c38"> --- But if I change the class signature to: ```Kotlin /** * @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