Metadata

ID: kotlin-code-style/comment-spacing

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

//comment
fun main() {
    System.out.println(
         //123
        "test"
    )
}

Compliant Code Examples

// comment
fun main() {
    System.out.println(
        // comment
        "test",
    )
}