What’s the convention for the ordering of the bloc...
# codingconventions
e
What’s the convention for the ordering of the block tags in the KDoc? Specifically in this case:
Copy code
/**
 * 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.