code formating fix: +1 new line (#1888)

One more new line is necessary after the text "Return statements in a case label are also OK:" to make the code excerpt after it be formatted as code.
This commit is contained in:
al-mission-2016
2022-02-07 07:07:30 +03:00
committed by GitHub
parent e92886217c
commit eb2f4d7756

View File

@@ -12912,6 +12912,7 @@ Multiple case labels of a single statement is OK:
} }
Return statements in a case label are also OK: Return statements in a case label are also OK:
switch (x) { switch (x) {
case 'a': case 'a':
return 1; return 1;