forked from scott/threaded_network_chat
EVEN FURTHER BIKESHEDDING
This commit is contained in:
2
STYLE.md
2
STYLE.md
@@ -70,7 +70,7 @@ The length of a function name, variable name, et cetera should be directly propo
|
||||
#### Do
|
||||
|
||||
- abbreviate extremely short-lived variables to one letter,
|
||||
- e.g. `for (int index = 0, index < 10, i++)` -> `for (int i = 0, i < 10, i++)`
|
||||
- e.g. `for (int index = 0; index < 10; i++)` -> `for (int i = 0; i < 10; i++)`
|
||||
- break any rule if following it ruins the readability
|
||||
|
||||
## Source File layout
|
||||
|
||||
Reference in New Issue
Block a user