diff --git a/Documentation/NuttXCCodingStandard.html b/Documentation/NuttXCCodingStandard.html index db301816fdc..27d5473746f 100644 --- a/Documentation/NuttXCCodingStandard.html +++ b/Documentation/NuttXCCodingStandard.html @@ -260,7 +260,7 @@
Forming Guard Names.
Then pre-processor macro name used in the guard is formed from the full, relative path to the header for from the top-level, controlled directory.
- That pat is preceded by __ and _ replaces each character that would otherwise be invalid in a macro name.
+ That path is preceded by __ and _ replaces each character that would otherwise be invalid in a macro name.
So, for example, __INCLUDE_NUTTX_ARCH_H corresponds to the header file include/nuttx/arch.h
GMyGlobalVariable.
+ The prefix g_ is never used.
TMyTemplate.
+ typedef'd Type Names
+ _t is never used.
+ SMyStructure.
+ The suffix _s is never used.
EMyEnumeration.
+ The suffix _e is never used.