From d084dcef3166833e7ce8c14ad5f8b980f63d2d60 Mon Sep 17 00:00:00 2001 From: Robin Degen Date: Tue, 26 Jul 2016 07:33:57 +0200 Subject: [PATCH] Fixed typo shuld -> should, fixed missing words --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1c92c21..42632f1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15806,7 +15806,7 @@ In the context of the styles of programming we recommend and support with the gu Non-rule summary: -* [NR.1: All declarations should be at the of a function](#Rnr-top) +* [NR.1: All declarations should be at the top of a function](#Rnr-top) * single-return rule * no exceptions * one class per source file @@ -15815,7 +15815,7 @@ Non-rule summary: * make all data members `protected` * ??? -### NR.1: All declarations should be at the of a function +### NR.1: All declarations should be at the top of a function ##### Reason