user
12/14/2016, 7:11 PM@property
is part of doc comment
[Kotlin/dokka] Issue created by codeprogression
If I document a class with @property
and @suppress
, the class is still generated in the HTML (but not JavaDoc). Changing @property
to @param
will enable the class to be suppressed from generation.
KDoc entry not suppressed:
/**
• @property foo A Foo
• @suppress
*/
class Example(val foo: Foo)
KDoc entry suppressed:
kotlin
/**
• @param foo A Foo
• @suppress
*/
class Example(val foo: Foo)