|
@@ -20,10 +20,10 @@ Please fill in the following form before submitting this PR:
|
|
|
|
|
|
Please follow the [coding style guidelines](CODESTYLE.md). Do not submit PRs which violate these rules.
|
|
Please follow the [coding style guidelines](CODESTYLE.md). Do not submit PRs which violate these rules.
|
|
- [ ] Comments and commit messages: no spelling or grammatical errors
|
|
- [ ] Comments and commit messages: no spelling or grammatical errors
|
|
-- [ ] 4 spaces per indention level, at most 100 chars per line
|
|
+- [ ] 4 spaces per indentation level, at most 100 chars per line
|
|
- [ ] Asterisks (`*`) next to types: `int* pointer;` (one pointer each line)
|
|
- [ ] Asterisks (`*`) next to types: `int* pointer;` (one pointer each line)
|
|
-- [ ] Braces (`{`) begin in the same line as function names, if-else, while, switch, union, and struct keywords.
|
|
+- [ ] Braces (`{`) begin in the same line as function names, `if`, `else`, `while`, `do`, `for`, `switch`, `union`, and `struct` keywords.
|
|
-- [ ] Naming: Macros - `NAMED_THIS_WAY`; global variables - `g_named_this_way`; others - `named_this_way`.
|
|
+- [ ] Naming: Macros, constants - `NAMED_THIS_WAY`; global variables - `g_named_this_way`; others - `named_this_way`.
|
|
- Other styling issues may be pointed out by reviewers.
|
|
- Other styling issues may be pointed out by reviewers.
|
|
|
|
|
|
|
|
|