egorand
12/21/2018, 1:23 AM/**
* This is a doc.
*
* @param first First thing
* @property second Second thing
* @param third Third thing
*/
class Foo(
first: String,
val second: Int,
third: Any?
)
Android’s style guide says that @param
tags should come before @property
tags, while the JB style guide doesn’t mention block tags at all.