From 12f0954f663a4935f441fd6289085df32ed19805 Mon Sep 17 00:00:00 2001 From: Shalom Craimer Date: Fri, 5 May 2017 01:20:16 +0300 Subject: [PATCH] Fixed the errors detected by Travis CI and @jwakely --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 14463d3..984bd09 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7302,7 +7302,7 @@ Contrast with [C.147](#Rh-ptr-cast), where failure is an error, and should not b ##### Example -The example below describes a `Shape_owner` that takes ownership of constructed `Shape` objects. The objects are also sorted into views, according to their geometric attributes. +The example below describes the `add` method of a `Shape_owner` that takes ownership of constructed `Shape` objects. The objects are also sorted into views, according to their geometric attributes. In this example, `Shape` does not inherit from `Geometric_attributes`. Only its subclasses do. void add(Shape* const item)