Fix incorrect style guide for switch statements in DEVELOPERS.md (#18088)

This commit is contained in:
Lazula 2020-12-21 21:13:12 -06:00 committed by GitHub
parent 701ee21720
commit e9494756b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ You may find some additional notes on this topic in doc/vim.
cases are indented at the switch level. cases are indented at the switch level.
```c ```c
switch(n) { switch (n) {
case 1: case 1:
break; break;
case 2: case 2: