KT-1545, KT-3161 KDoc formatter

This commit is contained in:
Sergey Rostov
2013-05-24 13:42:15 +04:00
committed by Mikhael Bogdanov
parent 5ff1f746d4
commit f9e8683db5
7 changed files with 37 additions and 6 deletions
@@ -1,4 +1,3 @@
/**
* x<caret>
*/
fun test() = 0
*/
@@ -1,5 +1,4 @@
/**
* x
* <caret>
*/
fun test() = 0
*/
+4
View File
@@ -0,0 +1,4 @@
class Test { /**
* do something
*/ fun doSomething() = 0
}
+6
View File
@@ -0,0 +1,6 @@
class Test {
/**
* do something
*/
fun doSomething() = 0
}