From 481996c8497bc72a41244800da4904cf99906335 Mon Sep 17 00:00:00 2001 From: Tony Van Eerd Date: Sun, 30 Apr 2017 22:32:46 -0400 Subject: [PATCH] Note -> Not, are -> is --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index e0fdf3d..2c3c935 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7091,9 +7091,9 @@ Consistent use of `override` would catch this. ##### Note -Note every class is meant to be a base class. +Not every class is meant to be a base class. Most standard-library classes are examples of that (e.g., `std::vector` and `std::string` are not designed to be derived from). -This rule are about using `final` on classes with virtual functions meant to be interfaces for a class hierarchy. +This rule is about using `final` on classes with virtual functions meant to be interfaces for a class hierarchy. ##### Note