From edac03725afa1c7ab163436a5eb257b38e883afb Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 26 Feb 2019 17:28:38 -0500 Subject: [PATCH] Remove unnecessary hyphenation (#1343) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f576412..13ffbe1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10209,7 +10209,7 @@ Flag all uses of ALL CAPS. For older code, accept ALL CAPS for macro names and f ##### Reason -One-declaration-per line increases readability and avoids mistakes related to +One declaration per line increases readability and avoids mistakes related to the C/C++ grammar. It also leaves room for a more descriptive end-of-line comment.