diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 22a29427ce8..ff00c816738 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -29,7 +29,7 @@
This has all the benefits of using early exits from functions: it reduces nesting of the loop, it makes it easier to describe why the conditions are true, -and it makes it obvious to the reader that there is no "else" coming up that +and it makes it obvious to the reader that there is no else coming up that they have to push context into their brain for. If a loop is large, this can be a big understandability win.
@@ -631,14 +631,14 @@ be a big understandability win.For similar reasons above (reduction of indentation and easier reading), - please do not use "else" or "else if" after something that interrupts - control flow like return, break, continue, goto, etc. For example, this is + please do not use else or 'else if' after something that interrupts + control flow like return, break, continue, goto, etc. For example, this is "bad":