scala-style-guide icon indicating copy to clipboard operation
scala-style-guide copied to clipboard

Make it clear that there must be a space between class declaration and curly braces

Open panbingkun opened this issue 3 years ago • 0 comments

add follow message to section "Spacing and Indentation" make it clear that there must be a space between class declaration and curly braces

  • Put one space between class declaration and curly braces.
    // Correct:
    class Person {
      // some code
    }
    
    // Wrong: omit spaces before curly braces
    class Person{
      // some code
    }
    

panbingkun avatar Jul 08 '22 05:07 panbingkun