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",
    )
}
PREVIEWING: ava.silver/azints-3246/replace-the-old-blob-forwarder-with-the-new-one