José González Gómez
04/28/2021, 9:34 AMdata 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?Marcin Aman
04/28/2021, 2:02 PMMarcin Aman
04/29/2021, 2:47 PMJosé González Gómez
04/29/2021, 7:34 PMJosé González Gómez
04/29/2021, 7:34 PMJosé González Gómez
04/30/2021, 7:18 AM/**
* Class description blah, blah, blah.
*
* @constructor Creates a new instance, blah, blah.
*/
data class MyClass(
/** Something. Another something. And blah, blah, blah. */
val property: String
)