From 74c36a43b0dee216d864a824574ac6916d9d772e Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 18 Sep 2017 11:13:09 -0700 Subject: [PATCH] Fixing ES.87 --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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