From 8ff099d2d2af7b686369fd9b49c6409974bea3ce Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Sat, 9 Mar 2019 17:35:49 -0500 Subject: [PATCH] Fix grammar (#1378) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 41b0475..bc4be8f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16837,7 +16837,7 @@ If you use a compiler that supports concepts (e.g., GCC 6.1 or later), you can r Defining good concepts is non-trivial. Concepts are meant to represent fundamental concepts in an application domain (hence the name "concepts"). -Similarly throwing together a set of syntactic constraints to be used for a the arguments for a single class or algorithm is not what concepts were designed for +Similarly throwing together a set of syntactic constraints to be used for the arguments for a single class or algorithm is not what concepts were designed for and will not give the full benefits of the mechanism. Obviously, defining concepts will be most useful for code that can use an implementation (e.g., GCC 6.1 or later),