diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index af35644..a1fd56d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15586,7 +15586,7 @@ In the context of the styles of programming we recommend and support with the gu Non-rule summary: -* [NR.1: All declarations shuld 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 @@ -15595,7 +15595,7 @@ Non-rule summary: * make all data members `protected` * ??? -### NR.1: All declarations shuld be at the of a function +### NR.1: All declarations should be at the top of a function ##### Reason