Back to Intellij Community

KDocMissingDocumentation

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/KDocMissingDocumentation.html

2025.3-rc-2190 B
Original Source

Reports public declarations that do not have KDoc comments.

Example:

class A

The quick fix generates the comment block above the declaration:

/**
   *
   */
  class A