EVEN FURTHER BIKESHEDDING

This commit is contained in:
2026-03-09 13:23:13 -05:00
parent 081a278753
commit 442bc8d88f

View File

@@ -70,7 +70,7 @@ The length of a function name, variable name, et cetera should be directly propo
#### Do #### Do
- abbreviate extremely short-lived variables to one letter, - 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 - break any rule if following it ruins the readability
## Source File layout ## Source File layout