Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Rule COMMENTS_BY_KDOC was implemented #1350

Merged
merged 14 commits into from
Jun 14, 2022
Prev Previous commit
Next Next commit
add uncommitted files
icemachined committed Jun 7, 2022
commit 7d6fe8e77ced29c264d22490b81fbc93ba956490
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package test.paragraph2.kdoc

/**
* right place for kdoc
*/
class Example {
/**
* right place for kdoc
*/
fun doGood() {
/*
* wrong place for kdoc
*/
/*
* right place for block comment
*/
// right place for eol comment
1 + 2
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package test.paragraph2.kdoc

/**
* right place for kdoc
*/
class Example {
/**
* right place for kdoc
*/
fun doGood() {
/**
* wrong place for kdoc
*/
/*
* right place for block comment
*/
// right place for eol comment
1 + 2
}
}