diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 513642c..9e90467 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11773,7 +11773,7 @@ Flag uses of `0` and `NULL` for pointers. The transformation might be helped by ##### Reason -Casts are a well-known source of errors. Make some optimizations unreliable. +Casts are a well-known source of errors and make some optimizations unreliable. ##### Example, bad