diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 77fe197..ab68d33 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1,6 +1,6 @@ # C++ Core Guidelines -September 17, 2017 +September 18, 2017 Editors: @@ -11213,11 +11213,11 @@ The loop control up front should enable correct reasoning about what is happenin Flag variables that are potentially updated (have a non-`const` use) in both the loop control iteration-expression and the loop body. -### ES.87: Don't add redundant `==` or `!=` to conditions +### ES.87: Don't add redundant `==` or `!=` to conditions ##### Reason -Doing so avoids verbosity and eliminats some opportunities for mistakes. +Doing so avoids verbosity and eliminates some opportunities for mistakes. Helps make style consistent and conventional. ##### Example