Frido
02/27/2019, 10:43 AM/**
* @property name ...
*/
class Person(private val name: String)
KDoc doesn't generate this. Only if I change property to param. Reading the linked SO thread it appears to actually be a property though. Can someone clarify please?
https://stackoverflow.com/questions/45032436/what-is-the-difference-between-properties-and-parameters-in-kotlinhho
02/27/2019, 11:07 AMFrido
02/27/2019, 1:20 PMhho
02/27/2019, 1:32 PMprivate
. It doesn't really make sense to include private properties in the public documentation.hho
02/27/2019, 1:32 PM