From 5750f1ee8604370575e4266d771b01fe2f21130c Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Sat, 2 Mar 2019 15:21:03 -0500 Subject: [PATCH] Fix typo in ES.86 example (#1362) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 08c5cb3..a5ecd45 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12856,7 +12856,7 @@ The loop control up front should enable correct reasoning about what is happenin for (int i = 0; i < 10; ++i) { if (skip) { skip = false; continue; } // - if (/* something */) skip = true; // Better: using two variable for two concepts. + if (/* something */) skip = true; // Better: using two variables for two concepts. // }