Skip to content

Conversation

@cmwarrington
Copy link

Before this change

fun foo() {
  if (expression)
  // comment
  bar()
}

After this change:

fun foo() {
  if (expression)
      // comment
      bar()
}

Before this change

  fun foo() {
    if (expression)
    // comment
    bar()
  }

After this change:

  fun foo() {
    if (expression)
        // comment
        bar()
  }
@meta-cla meta-cla bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Jan 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant