From eb2f4d77560a1cb384a9e9baf5939e43ee76bb82 Mon Sep 17 00:00:00 2001 From: al-mission-2016 Date: Mon, 7 Feb 2022 07:07:30 +0300 Subject: [PATCH] code formating fix: +1 new line (#1888) One more new line is necessary after the text "Return statements in a case label are also OK:" to make the code excerpt after it be formatted as code. --- CppCoreGuidelines.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5eb62f3..77e21c7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12912,6 +12912,7 @@ Multiple case labels of a single statement is OK: } Return statements in a case label are also OK: + switch (x) { case 'a': return 1;