From 26953e0bf9030a21021596c6b2ad0e857de9b520 Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:55:54 +0100 Subject: [PATCH] C.139: Fix typo in text --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c08178d..32983fd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6621,7 +6621,7 @@ Too often, such claims are based on conjecture or experience with other language There are examples where `final` can be important for both logical and performance reasons. One example is a performance-critical AST hierarchy in a compiler or language analysis tool. New derived classes are not added every year and only by library implementers. -However, misuses are (or at least has been) far more common. +However, misuses are (or at least have been) far more common. ##### Enforcement