diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d2c0097..6319138 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12576,7 +12576,7 @@ Consequently, it is best to be specific about the comparison. // ... } -Always remember that an integer can have more that two values. +Always remember that an integer can have more than two values. ##### Example, bad