From 0e5b13b543bee7d205c0b9dda11167d85dd39fa4 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Thu, 18 Jan 2024 13:21:43 -0500 Subject: [PATCH] Fix typos (#2158) --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5de2578..290cc16 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -21621,7 +21621,7 @@ The use of `p` for pointer and `x` for a floating-point variable is conventional ### NL.8: Use a consistent naming style -**Rationale**: Consistence in naming and naming style increases readability. +**Rationale**: Consistency in naming and naming style increases readability. ##### Note @@ -22032,7 +22032,7 @@ Consistency in large code bases. ##### Note -We are well aware that you could claim the "bad" examples more logical than the ones marked "OK", +We are well aware that you could claim the "bad" examples are more logical than the ones marked "OK", but they also confuse more people, especially novices relying on teaching material using the far more common, conventional OK style. As ever, remember that the aim of these naming and layout rules is consistency and that aesthetics vary immensely.