diff --git a/Coding-Standards.md b/Coding-Standards.md index 7e57eb8..eef3a5c 100644 --- a/Coding-Standards.md +++ b/Coding-Standards.md @@ -169,8 +169,8 @@ __In Conditionals.h:__ * My feature */ #if defined(MYFEATURE) - #undef OVERRIDDEN_FEATURE - #undef OVERRIDDEN_SETTING + #undef OVERRIDDEN_FEATURE // This feature is disabled by MYFEATURE + #undef OVERRIDDEN_SETTING // This setting will always be 1234 with MYFEATURE #define OVERRIDDEN_SETTING 1234 #endif ```