Fix grammar (#1336)

This commit is contained in:
Amir Livneh
2019-02-19 14:33:11 -05:00
committed by Sergey Zubkov
parent ff8934c39b
commit f2b517eac2

View File

@@ -20726,7 +20726,7 @@ This is not harmful and does not fall under this guideline because it does not e
##### Note ##### 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 { struct S {
int m_; int m_;
@@ -20737,7 +20737,7 @@ This is not harmful and does not fall under this guideline because it does not e
##### Note ##### 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. For example, by capitalizing type names, but not the names of functions and variables.
typename<typename T> typename<typename T>