From 6d992f9b79cdc2a5c83bd6bf8dece881adcc3f53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malthe=20H=C3=B8j-Sunesen?= Date: Tue, 20 Oct 2015 12:28:52 +0200 Subject: [PATCH] Typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a4b1a23..20c1dd4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7818,7 +7818,7 @@ Using `std::unique_ptr` is the simplest way to avoid leaks. And it is free compa // ... } -If `leak == true` the object pointer to by `p2` is leaked and the object pointed to by `p1` is not. +If `leak == true` the object pointed to by `p2` is leaked and the object pointed to by `p1` is not. ##### Enforcement