Skip to content

Commit

Permalink
[Docs] Fix incorrect spacing on Coding Conventions page (qmk#7058)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Oct 18, 2019
1 parent b4d6e20 commit e681bc8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/coding_conventions_c.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ Here is an example for easy reference:
```c
/* Enums for foo */
enum foo_state {
FOO_BAR,
FOO_BAZ,
FOO_BAR,
FOO_BAZ,
};

/* Returns a value */
int foo(void) {
if (some_condition) {
return FOO_BAR;
} else {
return -1;
}
if (some_condition) {
return FOO_BAR;
} else {
return -1;
}
}
```
Expand Down

0 comments on commit e681bc8

Please sign in to comment.