From 85ae6287650943e294eaca1387cc0eed81eb5b95 Mon Sep 17 00:00:00 2001 From: beinhaerter <34543625+beinhaerter@users.noreply.github.com> Date: Mon, 1 Jul 2019 23:00:07 +0200 Subject: [PATCH] Enum.2: typo/formatting (#1463) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 098abfd..42a51f6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8727,7 +8727,7 @@ Switching on an enumeration is common and the compiler can warn against unusual } } -Such off-by-one switch`statements are often the results of an added enumerator and insufficient testing. +Such off-by-one `switch`-statements are often the results of an added enumerator and insufficient testing. ##### Enforcement