@@ -32,23 +32,23 @@ For instance,
3232```
3333public int funcName() {
3434 if() { // No blank line because there's nothing to separate from
35- for (;;) { // No empty line because there's not much to separate from
35+ for (;;) { // No blank line because there's not much to separate from
3636 <more calls and assignments>
3737 }
3838
39- <more calls and assignments> // An empty line to clearly separate the code block from the rest of the code
39+ <more calls and assignments> // A blank line to clearly separate the code block from the rest of the code
4040 }
4141
42- <more calls and assignments> // An empty line to clearly separate the code block from the rest of the code
42+ <more calls and assignments> // A blank line to clearly separate the code block from the rest of the code
4343}
4444
45- private void Foo() => Baz(); // An empty line between functions
45+ private void Foo() => Baz(); // A blank line between functions
4646
4747private void One(<a long description
4848 that goes on for
4949 several lines) {
5050
51- <more calls and assignments> // An empty line to clearly separate the definition and the start of the function
51+ <more calls and assignments> // A blank line to clearly separate the definition and the start of the function
5252}
5353```
5454
@@ -68,7 +68,7 @@ if (recipe.subgroup == null
6868 && imgui.CloseDropdown()) {
6969```
7070
71- Most of the operators like ` => ` ` . ` ` + ` ` && ` go to the next line.
72- The notable operators that stay on the same line are ` => { ` and ` , ` .
71+ Most of the operators like ` . ` ` + ` ` && ` go to the next line.
72+ The notable operators that stay on the same line are ` => ` , ` => { ` , and ` , ` .
7373
7474The wrapping of arguments in constructors and method-definitions is up to you.
0 commit comments