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**: