From e796e557226ccca62b68f99e5b6fc6cc9f4d5674 Mon Sep 17 00:00:00 2001 From: Christopher Pitt Date: Tue, 22 Sep 2015 09:45:29 +1200 Subject: [PATCH] Fixing adverb usage Other options include: "use it where appropriate". --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index df57f3d..9671ae8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -407,8 +407,8 @@ A much clearer expression of intent would be: A well-designed library expresses intent (what is to be done, rather than just how something is being done) far better than direct use of language features. A C++ programmer should know the basics of the STL, and use it where appropriate. -Any programmer should know the basics of the foundation libraries of the project being worked on, and use it appropriate. -Any programmer using these guidelines should know the [Guidelines Support Library](#S-gsl), and use it appropriate. +Any programmer should know the basics of the foundation libraries of the project being worked on, and use it appropriately. +Any programmer using these guidelines should know the [Guidelines Support Library](#S-gsl), and use it appropriately. **Example**: