From d43d484417f487b487bf60c4a076c27706dc9f9c Mon Sep 17 00:00:00 2001 From: RicoAntonioFelix Date: Fri, 25 Sep 2015 22:02:05 -0400 Subject: [PATCH 1/3] Remove extra backtick... --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5c16297..b24e8aa 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10379,7 +10379,7 @@ Examples are `.hh` and `.cxx`. Use such names equivalently. **Enforcement**: * Flag non-conventional file names. -* Check that `.h` and `.cpp`` (and equivalents) follow the rules below. +* Check that `.h` and `.cpp` (and equivalents) follow the rules below. From eef63f5188dc51cf2c588003530b8ea1a79c745f Mon Sep 17 00:00:00 2001 From: RicoAntonioFelix Date: Fri, 25 Sep 2015 22:16:53 -0400 Subject: [PATCH 2/3] Capitalize for consistency... --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b24e8aa..33e4c46 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10412,7 +10412,7 @@ Examples are `.hh` and `.cxx`. Use such names equivalently. **Reason**: Maintainability. Readability. -**example, bad**: +**Example, bad**: // bar.cpp: void bar() { cout << "bar\n"; } From c7a820e21929b0511f2c3ef2f13219ec44edd7dc Mon Sep 17 00:00:00 2001 From: RicoAntonioFelix Date: Fri, 25 Sep 2015 22:20:40 -0400 Subject: [PATCH 3/3] Corrected spelling error... --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 33e4c46..3f42ad6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10475,7 +10475,7 @@ The user of `bar` cannot know if the interface used is complete and correct. At int bar(double) { /* ... */ } double foobar(int); -Thw errors will not be caught until link time for a program calling `bar` or `foobar`. +The errors will not be caught until link time for a program calling `bar` or `foobar`. **Example**: