From 122cda0bd2fa2048b883b2bfbc9110e5f15f97ce Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 1 Aug 2019 11:52:22 -0700 Subject: [PATCH] Closes #1451 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a3faf9c..76a4fe6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5892,7 +5892,7 @@ After a copy `x` and `y` can be independent objects (value semantics, the way no ##### Note -Prefer copy semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard-library facilities expect. +Prefer value semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard-library facilities expect. ##### Enforcement