From 84a30986afd63bb100c79c41cdc572a023a983d5 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Sun, 20 Sep 2015 19:41:22 -0700 Subject: [PATCH] Fix issue #34 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0bd93a7..d04db05 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7678,7 +7678,7 @@ There can be code in the `...` part that causes the `delete` never to happen. delete p; // error: just delete the object p, rather than delete the array p[] } -**Note**: This example also violates the [no naked `new` rule](#Res-new) and has many more problems. +**Note**: This example not only violates the [no naked `new` rule](#Res-new) as in the previous example, it has many more problems. **Enforcement**: