Some code contains switch statements where the opening brace of a case statement is on a separate line. For example: ``` case x: { do something here } break; ``` The above should be corrected to the following: ``` case X: { do something } break; ```