From ced78ffad102487415af540edcc7643dd7883ca1 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 19:52:06 +0200 Subject: [PATCH] typo --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cf65aa6..7db7bc1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6225,7 +6225,7 @@ Now `Shape` is a poor example of a class with an implementation, but bare with us because this is just a simple example of a technique aimed at more complex hierarchies. class Impl::Circle : public Circle, public Impl::Shape { // implementation - publc: + public: // constructors, destructor int radius() { /* ... */ } @@ -6240,7 +6240,7 @@ And we could extend the hierarchies by adding a Smiley class (:-)): }; class Impl::Smiley : Public Smiley, public Impl::Circle { // implementation - publc: + public: // constructors, destructor // ... }