4

With Java we used to use /** before a method and a nice auto-generated doc would just appear. Can't do the same with Kotlin. Is this feature available, turned of by default? How can i turn it on?

johnny_crq
  • 4,291
  • 5
  • 39
  • 64

1 Answers1

4

Kotlin documentation tools is called Dokka. You can document your code as in java with /**. Take a look to the official docs: https://kotlinlang.org/docs/reference/kotlin-doc.html

jorgemf
  • 1,123
  • 8
  • 13