From f2b517eac2979ca8d568adc9a4e5703892fcabe9 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 19 Feb 2019 14:33:11 -0500 Subject: [PATCH] Fix grammar (#1336) --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b84e48a..92b1a15 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -20726,7 +20726,7 @@ This is not harmful and does not fall under this guideline because it does not e ##### Note -Some styles distinguishes members from local variable, and/or from global variable. +Some styles distinguish members from local variable, and/or from global variable. struct S { int m_; @@ -20737,7 +20737,7 @@ This is not harmful and does not fall under this guideline because it does not e ##### Note -Like C++, some styles distinguishes types from non-types. +Like C++, some styles distinguish types from non-types. For example, by capitalizing type names, but not the names of functions and variables. typename