From 82755da67988a356d08a483d6984b348c3e99a27 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 31 Jul 2017 11:29:09 -0700 Subject: [PATCH] Fixing NL.17 per issue #1002 discussion --- CppCoreGuidelines.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ae3c9de..83d9ba1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -20310,15 +20310,15 @@ In the context of C++, this style is often called "Stroustrup". } switch (x) { - case 0: - // ... - break; - case amazing: - // ... - break; - default: - // ... - break; + case 0: + // ... + break; + case amazing: + // ... + break; + default: + // ... + break; } if (0 < x)