diff --git a/Documentation/NuttXCCodingStandard.html b/Documentation/NuttXCCodingStandard.html index 79f6828b6d..4740cc58e8 100644 --- a/Documentation/NuttXCCodingStandard.html +++ b/Documentation/NuttXCCodingStandard.html @@ -12,7 +12,7 @@

NuttX C Coding Standard

-

Last Updated: August 21, 2018

+

Last Updated: August 28, 2018

@@ -790,7 +790,15 @@ void some_function(void)
  • Final brace followed by a single blank line. The final right brace must be followed by a blank line as per standard rules. - In the case where there are nested several consecutive right braces, no blank lines should be inserted except for after the final right brace. + There are two exceptions to this rule: +
      +
    1. + In the case where there are nested several consecutive right braces, no blank lines should be inserted except for after the final right brace. +
    2. +
    3. + No blank should be used to separate the final, closing right brace when it is followed by a break; statement. +
    4. +
  • Special Indentation Rules.