From b516c49efc86702772732ae505881e14b0b9984f Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:41:18 +0100 Subject: [PATCH] C.8: Fix typo in title and capitalize first word --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0a5bf3d..e3f96d7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3513,7 +3513,7 @@ Class rule summary: * [C.4: Make a function a member only if it needs direct access to the representation of a class](#Rc-member) * [C.5: Place helper functions in the same namespace as the class they support](#Rc-helper) * [C.7: Don't define a class or enum and declare a variable of its type in the same statement](#Rc-standalone) -* [C.8: use `class` rather that `struct` if any member is non-public](#Rc-class) +* [C.8: Use `class` rather than `struct` if any member is non-public](#Rc-class) * [C.9: minimize exposure of members](#Rc-private) Subsections: @@ -3708,7 +3708,7 @@ Mixing a type definition and the definition of another entity in the same declar * Flag if the `}` of a class or enumeration definition is not followed by a `;`. The `;` is missing. -### C.8: use `class` rather that `struct` if any member is non-public +### C.8: Use `class` rather than `struct` if any member is non-public ##### Reason