Kapt: Fix star indentation in stub Javadoc (KT-30163)
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package javadoc
|
||||
|
||||
/** Simple */
|
||||
class A
|
||||
|
||||
/**
|
||||
* Multi
|
||||
* line
|
||||
* comment.
|
||||
*/
|
||||
class B {
|
||||
/** Nested
|
||||
* member
|
||||
* comment. */
|
||||
val a = ""
|
||||
|
||||
/**
|
||||
* Mixed
|
||||
* tabs/spaces
|
||||
*/
|
||||
val b = ""
|
||||
|
||||
/**
|
||||
* List:
|
||||
* * first item
|
||||
* * second item
|
||||
*/
|
||||
val c = ""
|
||||
|
||||
/**
|
||||
Without
|
||||
stars
|
||||
*/
|
||||
val d = ""
|
||||
}
|
||||
Reference in New Issue
Block a user