Hi, newbie to Kotlin and Dokka here, probably a silly question...
I have a
data class
for which I have documented properties using `@property`:
/**
* Class description blah, blah, blah.
*
* @property property Something. Another something. And blah, blah, blah.
*
* @constructor Creates a new instance, blah, blah.
*/
data class MyClass(val property: String)
The problem I have is that when I browse the class' properties I only get the first
Something.
in the description of the property (up to the first period), and then if I click on the property I get to a new page listing the property with no description at all, not even the first
Something.
. Am I doing anything wrong? Are periods forbidden in the description of a property?