From dc6ea376c4bd4609b887b5ff6d95e8c7ace6ae93 Mon Sep 17 00:00:00 2001 From: Kevin Boyette Date: Tue, 30 Nov 2021 23:14:38 -0500 Subject: [PATCH] ES.48: fix wording in reasoning (#1859) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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