From fc0999c56ead753972c86eab9edb23155d31b4b2 Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:54:52 +0100 Subject: [PATCH] C.129: Fix typo in text --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1af112a..c08178d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6204,7 +6204,7 @@ The importance of keeping the two kinds of inheritance increases Problems: -* As the hierarchy grows and more data is adder to `Shape`, the constructors gets harder to write and maintain. +* As the hierarchy grows and more data is added to `Shape`, the constructors gets harder to write and maintain. * Why calculate the center for the `Triangle`? we may never us it. * Add a data member to `Shape` (e.g., drawing style or canvas) and all derived classes and all users needs to be reviewed, possibly changes, and probably recompiled.